PDA

View Full Version : Damm if i can remember :-(


UKBusinessLive
11-26-2008, 08:24 PM
Hi guys,

I'm trying to add a picture to my forum description and its not comming out right as you can see from the screen shot below

https://vborg.vbsupport.ru/external/2008/11/9.png

I need to get the picture to the left and ALL the title and description to the right, at the moment i have the title on top the picture in the middle and the description is ok where it is.

so i guess how can i move the title over to the right to allow the picture to be on its own ??

the code i'm using is this one :confused::confused:


<table border="0" bordercolor="darkblue" cellpadding="1">
<tr>
<td>
<img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/member.png">
</td><td>
</td>
</tr>
</table>



Thanks in advance :D

Seven Skins
11-28-2008, 06:55 PM
<table border="0" bordercolor="darkblue" cellpadding="1">
<tr>
<td rowspan="2">
<img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/member.png">
</td>
<td>Name</td>
</tr>
<tr>
<td>Desc</td>
</tr>
</table>

Try this.