PDA

View Full Version : Table on vbulletin


dxflw
12-15-2008, 11:54 AM
I want to add a table like this:
https://vborg.vbsupport.ru/attachment.php?attachmentid=90612&stc=1&d=1229349244


how do i that?

Dismounted
12-15-2008, 12:19 PM
The templating system uses HTML ;). It's just a matter of finding the correct template to put it in.

bananalive
12-15-2008, 12:30 PM
<table>
<tr>
<td></td>
<td rowspan="2"></td>
<td rowspan="2"></td>
</tr>
<tr>
<td></td>
</tr>
</table>

dxflw
12-15-2008, 02:43 PM
tjhanks its works fine!!