2 Attachment(s)
How to remove line between products in "What's New," "Featured," "Recent Products"?
Hello,
I just installed the Recently Viewed Items sidebox, which I think is similarly coded as the What's New, Featured, Random and Specials sideboxes.
If I set it to display more than 1 item, there is a line between each item. I'd like to remove that if at all possible and would appreciate any help.
Here is what I mean:
http://www.zen-cart.com/forum/attach...2&d=1273203459
I'd like the items to be displayed without the separating line. I've tried hacking some tpl and module files but can't figure it out.
Thanks in advance.
Re: How to remove line between products in "What's New," "Featured," "Recent Products
Try adding this to your stylesheet.css:
Code:
#recentproductsContent {
border-bottom: none;
border-top: none;
}
#recentproducts {
border-bottom: 1px solid #DFF2F9;
}
Re: How to remove line between products in "What's New," "Featured," "Recent Products
Thank you so much, GEF! I can't believe how simple that was; I puzzled over this for over an hour. :P
Thanks again!
Re: How to remove line between products in "What's New," "Featured," "Recent Products
Not a problem. You know it always the little things that "get" you, right?:smile:
Re: How to remove line between products in "What's New," "Featured," "Recent Products
Hi . I have installed the recently viewed module and it shows the recently viewed item in sidebox but I would like to have it underneath the product info page.. I have added the following code in my tpl_product_info_display.php page but it does not show anything
<!--bof recent products module-->
<?php require($template->get_template_dir ('tpl_modules_recent_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates') . '/tpl_modules_recent_products.php'); ?>
<!--eof recent products module-->
Any suggestion would be so appreciated :cry: