Centering a banner

Search for:

Code:
#logo {
   float: left;
   width: auto;
   padding: 10px 13px 0 10px;
}

a#logo:hover {
   text-decoration: none;
}

/* Search box
Change left to center
 
In overall_header.html there is this code:
Code:
<div style="float: left;">
<a class="headerlink" title="Board index" href="./index.php?sid=29c78570fb76a03c1de6e4f8c3e2a9d0">
<img height="100" width="830" title="" alt="" src="./styles/skyblue/imageset/banner2.gif"/>
</a>
</div>

remove the float left so you just have:
Code:
<a class="headerlink" title="Board index" href="./index.php?sid=29c78570fb76a03c1de6e4f8c3e2a9d0">
<img height="100" width="830" title="" alt="" src="./styles/skyblue/imageset/banner2.gif"/>
</a>

that may center it, I've no idea why that float left is there
 
if it doesn't center it try adding this in any of the css files:

Code:
a.headerlink img {
margin:0 auto;
text-align:center;
padding:0;
display:block;
}
 
I've just tried it with firebug in firefox and it works fine. did you refresh the template? the display:left is stil there
 
Back
Top Bottom