HTML Programming Question

jimbob200521

Diamond Member
Apr 15, 2005
4,108
29
91
I'm trying to create a page that now has multiple images that link to different pages. I have all the links set up correctly, but the problem that I am running into is each image is going down to the next line, but I want them all on the same line, with one image on the left, one in the center, and one on the right.

Keep in mind I just started learning HTML Friday, but thus far the internet has sufficed as a teacher. Unfortunately now I can't find anything about how to do what I want. If posting the code I have so far would help, just let me know and I'll post it up.
 

Rockinacoustic

Platinum Member
Aug 19, 2006
2,460
0
76
What positioning are you using? Try using Tables to position each Image accordingly, so in this case it would sound like you'd want Three rows spanning each column so you'd have a left, center, and right image within the columns.

Here's a good tutorial if you're unfamiliar with tables: Tables
 

jimbob200521

Diamond Member
Apr 15, 2005
4,108
29
91
Originally posted by: Rockinacoustic
What positioning are you using? Try using Tables to position each Image accordingly, so in this case it would sound like you'd want Three rows spanning each column so you'd have a left, center, and right image within the columns.

Here's a good tutorial if you're unfamiliar with tables: Tables

I tried that, but for some reason I cannot get it to go. I'm not sure if I'm not entering the info correctly or what my problem is, but it just won't go. :(

Is there another way, other than via a table, to get my images/links to span a single line?
 
Dec 27, 2001
11,272
1
0
Are you placing each image in a cell within the same row?

<tr>
<td></td>
<td></td>
<td></td>
</tr>

Just post some of the code and it'll take somebody a second.

You could also just place them into the code right beside each other.....images don't have a built in line break so they'll stay side by side, though it's best to wrap them inside a table or use style sheets to keep them together should somebody shrink the browser window.
 

GotGoose

Member
Feb 25, 2006
41
0
0
I give you this link: http://css.maxdesign.com.au/listamatic/

Instead of text in the examples, use your images! (you might need to make a few small modifications)

A table of links does not describe the function of the links, whereas a list of links makes more sense. Use tables for tabular data, nothing else. :)
 

cubby1223

Lifer
May 24, 2004
13,518
42
86
Originally posted by: GotGoose
I give you this link: http://css.maxdesign.com.au/listamatic/

Instead of text in the examples, use your images! (you might need to make a few small modifications)

A table of links does not describe the function of the links, whereas a list of links makes more sense. Use tables for tabular data, nothing else. :)
I've heard about css nazis, but until now didn't think they actually existed...

Offense intended. ;) There are times when tables are better for structure. There are times when css is better for structure. To assign functionality based on name alone... You assign functionality based on (and I can't believe I actually need to spell this out) functionality.
 

GotGoose

Member
Feb 25, 2006
41
0
0