Hi Jettture,

I sussed out the culprit that was preventing the "Successfully added Product to the cart ..." box from showing. In the code below, I had changed margin-top to 0px. I changed it to 1px and the box shows again! :-)

Code:
 
body {
 font-family: "Lucida Grande", tahoma, verdana, arial, helvetica, sans-serif;
 font-size:73.5%;
 margin-top:1px;
 }
Now when there is no item in the cart, the top of the sideboxes touch the bottom of the green nav bar (there is no gap). However, when an item is added to the cart, the sideboxes drop down leaving a gap between the top of the side boxes and the bottom of the green nav bar...

Not a big deal, but how do I either 1)always have a gap there (even when no item is in the cart) or 2)never have a gap there (even when there is an item in the cart)??? You can see here www.allk-9.com/test Look at it with no item in the cart and then look at it with an item in the cart. You can see the gap between the top of the sideboxes and the bottom of the green nav bar that appears and disappears.

Thanks.