I'm trying this but the image isn't showing, why not? (edit in header template)
Original code:
Code:
<div id="header" class="floatcontainer doc_header">
{vb:raw ad_location.ad_header_logo}
<div><a name="top" href="{vb:raw vboptions.forumhome}.php{vb:raw session.sessionurl_q}" class="logo-image">
<img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a>
</div>
My custom non-working code:
Code:
<div id="header" class="floatcontainer doc_header">
{vb:raw ad_location.ad_header_logo}
<div><a name="top" href="{vb:raw vboptions.forumhome}.php{vb:raw session.sessionurl_q}" class="logo-image">
<!-- if VIP forum -->
<vb:if condition="$forum[forumid] == 30"><img src="images/vbulletin4_logoVIP.gif">
<vb:else />
<img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a>
</vb:if>
<!-- /if VIP forum -->
</div>