PDA

View Full Version : Position Forum to Left ?


Apfelfrucht
07-06-2007, 01:53 AM
Hello Everyone,

Do you know how to set the forum to LEFT position (align="left") ?

I mean all, because the default vBulletin forum position is centered (align="center").

Please help...

Dismounted
07-06-2007, 05:15 AM
The 'spacer_open' template.

Apfelfrucht
07-06-2007, 12:38 PM
Thanks a lot to Dismounted ;)

From spacer_open template, i change the code below :

<!-- open content container -->
<if condition="$show['old_explorer']">
<table cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]" align="center"><tr><td class="page" style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
<else />
<div align="center">
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
<div style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
</if>



With the following code :

<!-- open content container -->
<if condition="$show['old_explorer']">
<table cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]" align="center"><tr><td class="page" style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
<else />
<div align="left">
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
<div style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
</if>


It works !