The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Moving the VB logo to the right?
Hello!
Right now the default for the logo placement is left. How do i move this over to the right side? Like the extra buttons here on vbulletin.org 'home' 'forum' 'mods' 'chat' regards Marius |
#2
|
|||
|
|||
edt the header template
|
#3
|
|||
|
|||
I know. But what to code. This my current template.
Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> <td align="$stylevar[right]"> </td> </tr> </table> <!-- /logo --> <br> <!-- content table --> $spacer_open $_phpinclude_output |
#4
|
|||
|
|||
change align="center"> into align="right">
|
#5
|
|||
|
|||
Sorry mate!
That turned it into this. |
#6
|
|||
|
|||
Try:
HTML Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"> </td> <td align="$stylevar[right]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> </tr> </table> <!-- /logo --> <br> <!-- content table --> $spacer_open $_phpinclude_output |
#7
|
|||
|
|||
I fixed it.
Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"> </td> <td align="$stylevar[right]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a> </td> </tr> </table> <!-- /logo --> <br> <!-- content table --> $spacer_open $_phpinclude_output |
#8
|
|||
|
|||
Didn't I just post that code?
|
#9
|
|||
|
|||
Okay now i have a new alignment problem!
I need to get the logo a bit down to align with the main table. |
#10
|
|||
|
|||
ok, just ignore me...
you could try: HTML Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"> </td> <td align="$stylevar[right]" style="padding-top: 10px;"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> </tr> </table> <!-- /logo --> <br> <!-- content table --> $spacer_open $_phpinclude_output |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|