I want to put two banner on the right and left side of the slideshow on this website. I wonder if anyone can help me to figure out how to do this.
the easiest way would be to use a table <table border=0 cellspacing=0 cellpadding=0 width=700> <tr><td> banner </td> <td width=500> slideshow </td> <td> banner</td></tr> </table> PHP:
If you don't want to mess with tables, try this: <div id="content"> <div class="banner">Banner Left</div> <div class="slideshow">Slideshow</div> <div class="banner">Banner Right</div> <div class="clr-b"></div> <h2>Title Here</h2> Content here. </div> Code (markup): You can put the styles into the CSS file: .banner { width: 190px; float: left; } .slideshow { width: 500px; float: left; } .clr-b { clear: both; } Code (markup):