Changing Banners
Thu, 2007-06-14 21:21 — jony
Below is the html & css code to change the Banners on Attachmax Homepage. <div id="branding">
<a href="<?php echo $siteUrl ?>"><img alt="<?php echo $siteName ?>" src="images/logo.png" /></a>
<a id="buy" href="http://cihilt.com"><img alt="Buy AttachMax Script" src="images/buy.png" /></a>
</div>
CSS Elements - Files located at css/style.css #branding {
float: left;
background: url(../images/banner_bg.png) repeat-x;
border-bottom: 10px solid rgb(255, 218, 103);
}
#branding img {
float: left;
}
#buy {
float: right;
}
|
