Change round edges for the "New Products For..." box

WillemB <[email protected]> 2 Sep 2003 21:00:35 -0000
Newsgroups gmane.comp.web.oscommerce.tips
Message-ID <0b35f90e877b286d64b53c28d9ce99ed@osCommerce-Forums>
This message was sent from: Tips and Tricks
http://forums.oscommerce.com/viewtopic.php?p=223461#223461
----------------------------------------------------------------

I've been browsing through the forums and found two questions by people who wanted to know how to give the "New Products For..." box on the main page round edges, or no round edges (instead of the standard left round edge, right straight edge). Changing the infoBox settings in boxes.php won't work.

As is also the case with questions I post (I've never had one single reply so far), no one bothered to reply or those that did didn't know how to fix the problem.

Since this was my problem as well, I did some digging myself and came up with the solution.

If you want to give "New Products For..." round edges, you need to make the following change in catalog/includes/modules/new_products.php:

Original[quote]new contentBoxHeading ($info_box_contents);[/quote]

Change to[quote]new infoBoxHeading($info_box_contents, true, true);[/quote]

This will make the box have both left and right round edges. Change true to false to get straight edges.

Please just reply to this if you found it useful, I'm getting rather tired of never having any replies to anything I post!