Quote:
Originally Posted by basskiller
6.0
But I have found a way to fix it.. atleast on my end
whereas the original looks like this
Code:
<div id="wrap">
<!-- logo -->
<a name="top"></a>
<div id="logo_block">
<div class="logo-l"></div>
<div class="logo-m"><div style="text-align:center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />$ad_location[ad_header_logo]</a></div></div>
<div class="logo-r"></div></div>
and I moved the "div" closing tag (in red) to here
Code:
<div id="wrap">
<!-- logo -->
<a name="top"></a>
<div id="logo_block">
<div class="logo-l">
<div class="logo-m"><div style="text-align:center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />$ad_location[ad_header_logo]</a></div></div> </div>
<div class="logo-r"></div></div>
which seems to make it work for me ..
again..Thanks for the skin..Probably the best I've seen in quite some time..Great work!!!
One other question
which font are you using for the logo? is there somewhere I can find that easily?
Thanks again
|
Okay, I think the problem is the use of the secondary div, which struck me as superfluous when I used it, but the day had been a long one, you know how it is. Finding the source of problems once the skin is finished is not so easy, but the secondary div still makes no sense to me, so let's try this.
Find this:
Code:
<div id="logo_block">
<div class="logo-l"></div>
<div class="logo-m"><div style="text-align:center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />$ad_location[ad_header_logo]</a></div></div>
<div class="logo-r"></div>
</div>
Replace with this:
Code:
<div id="logo_block">
<div class="logo-l"></div>
<div class="logo-m" style="text-align: center;"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />$ad_location[ad_header_logo]</a></div>
<div class="logo-r"></div>
</div>
Let me know how it goes