Quote:
Originally Posted by gOOvER
I know I nerve, but how can I move the logo to the left? 
|
Edit your header template and find:
Code:
<vb:comment><vb:if condition="$stylevar['titleimage']"><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:raw vboptions.bbtitle}" /></a><vb:else /><div> </div></vb:if></vb:comment>
<div align="center"><a name="top" href="{vb:link forumhome}"><img src="{vb:stylevar titleimage}" alt="{vb:raw vboptions.bbtitle}" /></a></div>
Remove the <vb:comment> </vb:comment> tags from the upper part of the code then delete the bottom part i.e.
Code:
<div align="center"><a name="top" href="{vb:link forumhome}"><img src="{vb:stylevar titleimage}" alt="{vb:raw vboptions.bbtitle}" /></a></div>
So your left with this part of the code only near the top of the template:
Code:
<vb:if condition="$stylevar['titleimage']"><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:raw vboptions.bbtitle}" /></a><vb:else /><div> </div></vb:if>
Save and you should be good to go

.