Jump to content

HTML Images


Guest ICS

Recommended Posts

I'm currently using HTML to make a table for a webpage. In one of the columns of this table, I'm trying to insert numerous small pictures per row. The problem is that when I attempt to view this webpage via a browser, it puts the images on top of each other, instead of next to each other. This makes the number of viewable rows of my table very small. Is there a way that I can place images next to each other in a table cell? The images I'm using are very small, and fit in the cell when viewing FrontPage design. Any help would be greatly appreciated. Thank you.

Link to comment
Share on other sites

welcome to the forum. I'd start by recommending that you dispose of Frontpage - if you're serious about learning this stuff. Frontpage is like fast food for the internet - it may look good and be convenient at first, but it will go right to your waste line before you know it.anyway, cuz you're in frontpage, you are not likely going to "see" the cause of the problem until you flip into "code" mode. Once there, you will be able to understand what is really happening.my guess is that FP is making a table for each image and wrapping the image in a <p> tag - and that is to say the least of the possible things that software will do.if you post some code, I can help a little more.but you probably want something like this:

<table><!-- row one , five across --><tr><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /><!-- row two , five across --><tr><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td><td><img src="xxxx.jpg" width="50" height="50" /><br /></td></tr></table>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...