Quote:
Originally Posted by Battle_Ring
How do you change your logo link in Vbulletin 4 i cant find it anywhere
|
Do you mean to change the link if someone clicked at your logo to be redirected at another page? If so, at the header template find the following code:
HTML Code:
<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>
And change it to:
HTML Code:
<div><a name="top" href="redirection_url" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a></div>
And replace the redirection_url with the actual url you want your users to be redirected to after they click your logo.