Hi!
How can I remove sideboxes titles. E.g; I don't want to display titles like "Categories" , "Manufacturers" , "Information" etc , but detail in the side boxes should be displayed.
Thanks in advance
Hi!
How can I remove sideboxes titles. E.g; I don't want to display titles like "Categories" , "Manufacturers" , "Information" etc , but detail in the side boxes should be displayed.
Thanks in advance
blue, all you have to do, is got to includes/languages/english.php and edit each box heading you don't want shown, such as categories:
// categories box text in sideboxes/categories.php
define('BOX_HEADING_CATEGORIES', 'Categories');
Just delete the Categories (highlighted) to look like:
// categories box text in sideboxes/categories.php
define('BOX_HEADING_CATEGORIES', '');
The heading will now be gone.
Hope this helps.
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!
Add to your stylesheet
.leftBoxHeading, .rightBoxHeading {display: none;}
If there is one heading you still want displayed, you can turn that back on with say
#categoriesHeading {display: block;}
Cheers gjh42! :)
nevermind