Using the developer's tool kit, you'll need to find the code that creates the
Code:
<div class="leftBoxContainer tabletHide mobileHide" id="whatsnew">
There's an h3 after that, then the divs start
Code:
<div class="leftBoxContainer tabletHide mobileHide" id="whatsnew"><h3 class="leftBoxHeading" id="whatsnewHeading">
<a href="https://www.flowertownengravable.gifts/index.php?main_page=products_new">What's New&nbsp;&nbsp;[more]</a>
</h3>
<div class="sideBoxContent centeredContent">
  <div class="sideBoxContentItem">
    <a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=364">
      <img src="images/LTM944.jpg" alt="Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" />
        <div class="box-title">Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a>
        </div>
        <div class="box-price"><span class="productBasePrice">$26.00</span></div>
        </div>
  <div class="sideBoxContentItem"><a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=363"><img src="images/LTM943.jpg" alt="Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" /><div class="box-title">Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a></div><div class="box-price"><span class="productBasePrice">$26.00</span></div></div>
  <div class="sideBoxContentItem"><a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=365"><img src="images/LTM945.jpg" alt="Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" /><div class="box-title">Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a></div><div class="box-price"><span class="productBasePrice">$26.00</span></div></div></div>
</div>
Apparently, someone wanted to be able to control the title of each item and didn't want to use
Code:
.sideBoxContentItem a{font
and used line 297/298 of the stylesheet.css to control the title
Code:
.box-title a{color:#171717;}
.box-title{margin:0 auto 10px auto;width:90%;}
It will work like they wanted if you move the
Code:
<div class="box-title">
to match
Code:
<div class="leftBoxContainer tabletHide mobileHide" id="whatsnew"><h3 class="leftBoxHeading" id="whatsnewHeading">
<a href="https://www.flowertownengravable.gifts/index.php?main_page=products_new">What's New&nbsp;&nbsp;[more]</a>
</h3>
<div class="sideBoxContent centeredContent">
  <div class="sideBoxContentItem">
    <div class="box-title">
       <a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=364">
         <img src="images/LTM944.jpg" alt="Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" />Royal Blue 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a>
    </div>
        <div class="box-price"><span class="productBasePrice">$26.00</span></div>
        </div>
  <div class="sideBoxContentItem"><a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=363"><img src="images/LTM943.jpg" alt="Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" /><div class="box-title">Red 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a></div><div class="box-price"><span class="productBasePrice">$26.00</span></div></div>
  <div class="sideBoxContentItem"><a href="https://www.flowertownengravable.gifts/index.php?main_page=product_info&amp;cPath=1_36_41&amp;products_id=365"><img src="images/LTM945.jpg" alt="Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" title="Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid" width="200" height="200" /><div class="box-title">Pink 14 oz. Polar Camel Pilsner Tumbler with Clear Lid</a></div><div class="box-price"><span class="productBasePrice">$26.00</span></div></div></div>
</div>
That will need to be done in the php page that creates the sidebox.