Click to See Complete Forum and Search --> : How to place banners side by side??


Bob Harding
09-22-2003, 12:00 PM
I am a novice.

I want to place banners on a website. I have 12 banners to place. I want 3 rows of banners with 4 banners in each row..

So I will have side by side banners.

How do I code this so the banners will be side by side?

How do I set up the next "row" of banners? (go from one row to the next?)

Aronya1
09-22-2003, 12:37 PM
Hi Bob,

What are you using to put the site together? Are you hand-coding with something like Notepad? Or are you using a WYSIWYG editor like Dreamweaver or FrontPage?

The recommended way (especially in these forums) to do what you want is going to be with CSS. However, I don't find CSS layout very easy to work with for a newbie. So, while I won't go so far as to recommend it, I'll put it out there as an option: tables. No doubt, I'll get jumped on here for suggesting tables for layout, but they're simply easier to understand than CSS.

Just my opinion. Now I'll go whimper in my corner, awaiting my beating...

pyro
09-22-2003, 12:44 PM
Actually, depending on the context of his need for this, I'd think it may well be able to be considered tabular data...

Bob Harding
09-22-2003, 01:15 PM
Hi:

Thank you.

I am building a website using ken envoy's site build it. So No I am not using frontpage.

I can use frontpage with limited ability...but if you give me an example of how the code would look then I can do it.

so like I already have the banner codes. I don't need that.

I just need to see code that will place the banner codes that I have next to each other in a row.

Then I need to see how to move down to do another row of banners.

Hope that helps you understand this limited mind you are trying to communicate with.

MotherNatrsSon
09-22-2003, 03:19 PM
You could do something as simple as this:

<img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif">
<br>
<img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif">
<br>
<img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif">

A table:

<table width="" height="">
<tr>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
</tr>
<tr>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
</tr>
<tr>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
<td><img src="banner.gif"></td>
</tr>
</table>


MNS

Bob Harding
09-22-2003, 04:34 PM
Hi:

I appreciate your help a lot.

I'll let you know how I do.

Best Regards