PDA

View Full Version : Alignment on VB3


Dark.Angel
11-08-2004, 06:39 PM
Hi,

I am trying to figure out how to move the layout of the forums to the left, I currently have the board set at 720 pixels width.

I wish to have it moved to the left such as this site (www.ullysis.com)

Could you please tell Me what code I need to add and the section please? I am new to VB :)

Link14716
11-08-2004, 06:46 PM
Hmm... you'd think this would be easy. Maybe someone with more HTML knowledge can help here. I tried to change it in the one obvious place with interesting results, to say the least.

twoseven
11-09-2004, 01:34 AM
doing fixed width styles is a pain there is no easy way to do it that i know of. you would have to set conditionals in the templates unless someone else knows a way that i'm not aware of

Logikos
11-09-2004, 05:28 AM
Conditions are not nessasary, you just need to make the forums inside a table with 2 <td> vars. Like this.


<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="FIXED WIDTH HERE">Forum code here</td>
<td>left side code here</td>
</tr>
</table>


Its acually very easy to do, you just need to know HTML and the Templates in vB.

Dark.Angel
11-09-2004, 10:07 AM
Hey guys, dont worry about it I got it, I realized that I put 720 in a field under stylevars and it should have been 100% :)