-
Help with infobox header
On the main shop index for new products I want to change the gif in the infoboxheader. It uses the same gif and the other info boxes but its on the wrong side.
Here's a screen shot with arrow. All I need is the file name to make the change. I looked in all the shop/product files and even in the osc files of the root but I missed it.
Thanks...
http://themodelcraftsman.com/error.gif
-
Hi,
It's an osCommerce code bug, that they don't want to fix in their updates.
To fix this you need to edit:
shop/includes/classes/boxes.php
Find on line 159
PHP Code:
'text' => tep_image(DIR_WS_IMAGES . 'infobox/corner_right_left.gif')));
And replace with:
PHP Code:
'text' => tep_image(DIR_WS_IMAGES . 'infobox/corner_right.gif')));
Let me know if there are any other problems with this.
-
That was it. Thanks!!!! ;)