How to place banners side by side??

liunx

Guest
I am a novice. <br />
<br />
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..<br />
<br />
So I will have side by side banners.<br />
<br />
How do I code this so the banners will be side by side?<br />
<br />
How do I set up the next "row" of banners? (go from one row to the next?)<!--content-->Hi Bob,<br />
<br />
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?<br />
<br />
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.<br />
<br />
Just my opinion. Now I'll go whimper in my corner, awaiting my beating...<!--content-->Actually, depending on the context of his need for this, I'd think it may well be able to be considered tabular data...<!--content-->Hi:<br />
<br />
Thank you.<br />
<br />
I am building a website using ken envoy's site build it. So No I am not using frontpage. <br />
<br />
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.<br />
<br />
so like I already have the banner codes. I don't need that.<br />
<br />
I just need to see code that will place the banner codes that I have next to each other in a row.<br />
<br />
Then I need to see how to move down to do another row of banners.<br />
<br />
Hope that helps you understand this limited mind you are trying to communicate with.<!--content-->You could do something as simple as this:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><br />
<br><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><br />
<br><br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"><img src="banner.gif"><img src="banner.gif"><img src="banner.gif"><br />
<br />
A table:<br />
<br />
<table width="" height=""><br />
<tr><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
</tr><br />
<tr><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
</tr><br />
<tr><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"banner.gif"></td><br />
</tr><br />
</table><br />
<br />
<br />
MNS<!--content-->Hi:<br />
<br />
I appreciate your help a lot.<br />
<br />
I'll let you know how I do.<br />
<br />
Best Regards<!--content-->
 
Back
Top