|
That didnt work :-(
My top and middle sections images are part of my css:
#top.home {
background-image: url(images/top_bg.gif);
background-repeat: no-repeat;
width: 800px;
height: 103px;
}
#menu {
width: 400px;
padding-top: 80px;
padding-left: 330px;
}
#content.home {
background: url(images/home_main.jpg);
height: 371px;
width: 800px;
}
Where as the menu images are part of the html body:
<div id="top" class="home">
<div id="menu">
<img src="images/menu_home.gif" height="19" width="75" alt="Outer Edge Home" />
<img src="images/menu_news.gif" height="19" width="72" alt="News" />
<img src="images/menu_mag.gif" height="19" width="66" alt="The Magazine" />
<img src="images/menu_links.gif" height="19" width="70" alt="Outer Edge Links" />
<img src="images/menu_contact.gif" height="19" width="70" alt="Contact" />
</div></div>
|