Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Img alignment

Status
Not open for further replies.

Gwen21

Programmer
Apr 5, 2002
16
US
I am just getting into really learning HTML and CSS.
I want to place a picture in the center of my page with a list of links on both sides of it. Is this possible?

Thanks
Gwen
 
yes...
do it with some nice tables..
that way you can put your image in a cell with cells of links on either side.
 
something like this:

<table cellspacing=&quot;0&quot; cellpadding=&quot;5&quot; border=&quot;0&quot;>
<tr width=&quot;100%&quot;>
<td>Links on the left<br><br>
<a href=&quot; AAA </a><br>
<a href=&quot; BBB </a><br>
<a href=&quot; CCC </a><br>
<a href=&quot; DDD </a><br>
</td><td><img src=&quot;myimage.jpg&quot;></a>
<td>Links on the right<br><br>
<a href=&quot; EEE </a><br>
<a href=&quot; FFF </a><br>
<a href=&quot; GGG </a><br>
<a href=&quot; HHH </a><br>
</td></tr>

I hope this helps,
[bobafett] BobbaFet [bobafett]

Everyone has a right to my opinion.
E-mail me at caswegkamp@hotmail.com
 
Thanks for the table idea. Is there a way to do a row span like a column span ?
 
yeah rowspan=&quot;#&quot; and colspan=&quot;#&quot;.
rowspan goes in the <tr> and colspan goes in the <td>. [bobafett] BobbaFet [bobafett]

Everyone has a right to my opinion.
E-mail me at caswegkamp@hotmail.com
 
Thanks! I had tried to use the rowspan with no luck but it is working now!
Thanks again :)
 
bobbafet,

rowspan goes in the <tr> and colspan goes in the <td>.

That is not true. Rowspan and colspan both go into <TD> not in <TR>. For 3 years, I've been putting both into <TD> and it always works. [deejay]
Nate
&quot;If you're not living on the edge, you're taking up too much space!&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top