I've added New Products and Best sellers to my page one under the other. I'm trying to get the two items to only have one line break between so I've put them both in a Div tag in the Actinic but it's not altering the distance between the two. Can someone please point me in the right direction?
Below is the code on my layout code page.
This the Actinic.css style
[code]
div.productsbox {
width: 189px;
padding-bottom: 0px;
}
div.newbox {
width: 189px;
padding-top: 0px;
}
Below is the code on my layout code page.
Code:
<td valign="top" class="sidebar"> <div class="tech_menu_button_title"> <p class="tech_text_product_section"><actinic:variable value="Shopping Cart Summary - No Box" name="ShoppingCartSummary" /></p> </div> <div id="productsbox"> <actinic:variable value="Sidebar New Products List In A Box" name="NewProductListSidebar" if="%3cactinic%3avariable%20name%3d%22NewProductsListInSidebar%22%20%2f%3e" /> </div> <div id="newbox"> <actinic:variable value="Sidebar Best Sellers List In A Box" name="BestSellerListSidebar" if="%3cactinic%3avariable%20name%3d%22BestSellersListInSidebar%22%20%2f%3e" /> </div> </tr>
[code]
div.productsbox {
width: 189px;
padding-bottom: 0px;
}
div.newbox {
width: 189px;
padding-top: 0px;
}
Comment