Author: Prosk8er » Thu Sep 13, 2012 6:02 pm
try this
find:
- Code: Select all
<div class="headerbar">
<div class="inner"><span class="corners-top"><span></span></span>
<div id="site-description">
<!-- IF STARGATE -->
<a href="{U_PORTAL}" title="{L_PORTAL}" id="logo">{SITE_LOGO_IMG}</a>
<!-- ELSE -->
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<!-- ENDIF -->
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
replace with:
- Code: Select all
<div class="headerbar">
<div class="inner">
<div id="site-description">
<!-- IF STARGATE -->
<a href="{U_PORTAL}" title="{L_PORTAL}" id="logo">{SITE_LOGO_IMG}</a>
<!-- ELSE -->
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<!-- ENDIF -->
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
</div>
</div>
let me know if that does anything