Quote Originally Posted by johnson4x4 View Post
I'm trying to figure out a way to do subtitles. For instance, I want to insert a different styled list item with just plain text in between certain catalog items. Can anyone direct me to some info?

thanks in advance

Don't know of a way to add sub-titles, as the menu list is generated according to your products.

But you CAN add all the links you want BETWEEN the menu list and the "Specials, New Products, All products" by opening up:

includes/templates/YOUR_CUSTOM_TEMPLATE/sideboxes/tpl_categories_css.php

At about line 26 you will see a line that reads:
Code:
$content .= '<P></P>';
You can edit that to something like this:
Code:
$content .= '<br><a href="http://your-link.com">link 1</a></br>';
$content .= '<br><a href="http://your-link.com">link 2</a></br>';
$content .= '<br><a href="http://your-link.com">link 3</a></br>';
Hope this helps.