There are styles associated with the links that you should be able to modify to make them appear as you want. Here is the html from the left links when I added a section title, link, another section title, another link
- Code: Select all
<div class="left_pagelinks">
<a class="left_pagetitle">Section head</a>
<a class="left_pagelink" href="http://mydomain.com/cgi-bin/sc/order.cgi?storeid=*100bd218ab0745409e26&function=show" title="sub link">sub link</a>
</div>
<div class="left_pagelinks">
<a class="left_pagetitle">Section head 2</a>
<a class="left_pagelink" href="http://mydomain.com/11sp2/index.html" title="link to main page">link to main page</a>
</div>
You can see that the Section head and Section head 2 both have a class of "left_pagetitle" and the links beneath them have the class "left_pagelink". So you would need to change (or add ) those classes so that they display as you want.
Looking at the source of the page there is a stylesheet included called from publish/swish-wt.css . So go to Merchandising > Custom Templates > Includes and in the Publish section and use the Copy ShopSite Publish button and make a copy of the file swish-wt.css giving it a different name such as swish-wt.css1. Edit that file and make your changes and save it. Then make a copy of the file you edited and give it the name swish-wt.css.
When I looked at that file it doesnot appear to have the left_pagetitle style defined so you will need to add it. I don't know css well enough to tell you how to do it but looking another css file I see code like this
- Code: Select all
#links li a, td.reg, td.reg_link, a.left_pagelink, .left_pagetitle {
display: block;
line-height: 20px;
text-decoration: none;
text-align: left;
}
a.left_pagelink {
margin: 0px 4px;
}
Since you want the left_pagetitle to look different from the left_pagelink you would need to put it in a separate section and make the styles different. I don't know how you would make it non-clickable but a web search should help you find that info.