- Moderated by:
- Support Team
-
- rank:
-
Helper
- registered:
- December 2005
- Status:
- offline
- last visit:
- 24.11.07
- Posts:
- 220
Hello everyone.
I was wondering if someone could give me some advice on how to achieve what I am trying to do in section.
First I will post a screenie of what I am talking about.

Ok, what I am trying to do is get text to the right of the image. I am doing like a profile page for the members of my site. You know like name, age, email, ect. And then a bio and more pictures under the main image of the member on the left.
I have already tried to use the:
style="float:left; margin: 3px
code, and it works, but it makes the page look a little messed up and the image goes on top of the border and all that. Was wondering if there was another way to achieve this.
Thanks -
- rank:
-
Freshman
- registered:
- August 2007
- Status:
- offline
- last visit:
- 25.09.07
- Posts:
- 9
Thats some basic HTML stuff, not sure it should be asked here but here goes a sugegstion anyway.
Using tables.
Code
<table>
<tr>
<td valign="top">
<img src="asdf.jpg">
</td>
<td valign="top">
Text goes here
</td>
</tr>
</table>
