@shags38
Try this stuff
stylesheet.css: line 169
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {margin: 1em 0;}
change to (or remove rule completely)
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {/*margin: 1em 0;*/}
----------------------------------------------------------------------------------------------------------------------------------------------------
stylesheet.css: line 236
Code:
.box_image{margin:15px 0 20px 0;}
adjust margin around image
---------------------------------------------------
stylesheet.css: line 228
Code:
.product_title {margin:20px auto 0 auto;min-height:45px;color:#444;font-size:120%;line-height:18px;}
adjust margin: 20px to margin: 5px
---------------------------------------------------
stylesheet.css: line 231
Code:
.product_detail {margin-top:30px;margin-bottom:10px;}
change to
Code:
.product_detail {display: none;/*margin-top:30px;margin-bottom:10px;*/}
---------------------------------------------------
stylesheet.css line 232
Code:
.price, .pl-price{font-size:150%;margin-bottom:20px;}
because I do not know off the top of my head where .pl-price is used I would separate those into two rules and comment out the margin-bottom on the .price
Code:
.pl-price{font-size:150%;margin-bottom:20px;}
.price{font-size:150%;/*margin-bottom:20px;*/}
---------------------------------------------------
the space between the title and price that is left after all of that can be removed by stripping out the <br> tag from the file that generates that box (forget where it is off the top of my head)
see attached image for what I got it to look like in my browser by playing in the inspector

Bookmarks