Just got this template and really like it!
I'm not sure how to remove the top speedbar properly.
I found this code in skin/smart_template/custom/header.tpl :
Code:
<div id="st_speedbar">
<div id="header_links_container">
<div id="header_links_right">
<div id="header_links">
<ul>
{section name=sb loop=$speed_bar step=-1}
<li{if $smarty.section.sb.first} class="first"{elseif $smarty.section.sb.last} class="last"{/if}><a href="{$speed_bar[sb].link}">{$speed_bar[sb].title}</a></li>
{/section}
</ul>
</div>
</div>
</div>
<div id="header_links_left">
{* Space for header left column *}
</div>
</div>
My question is, What part should I comment out or delete? Thanks!!!