You don't need all that to just float 6 images that will be links.
keep the <div id="banner_wrapper"> to hold the 6 image links. Apply the "banner" class to the 6 images (instead of the 3), and float the images.
Quote:
.banner{
float: left;
width: xxxpx; /* width of the images */
background: #353C2C url(../images/banner_bg.gif) left repeat-y;
margin-right:xxpx; /*adjust margins to space the images */
padding-bottom:6px;
}
|
No absolute or relative positioning is necessary for the image 'banners'.
Make sure the width of the 6 images, including margins, fits inside the stated width of the banner-wrapper and make sure you CLEAR the floats by using overflow: auto (or hidden) on the banner-wrapper div.
Oh and this <center> <h2> -- is INVALID markup.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|