try this css
Code:
@charset "utf-8";
/* CSS Document */
body {
margin: 0px;
padding: 0px;
}
#wrapper {
margin: 0 auto;
width: 950px;
height: 700px;
background-image: url( images/header_footer.jpg);
background-repeat:no-repeat;
padding-top:186px;
}
My idea to make the nav to use less html is this: each nav button is a <a href=""> tag and in css you give all #navigation_buttons a (a set height and width; and each specific one an image and a hover image)
rough code for my idea of the nav
Code:
html:
<div id="navigation_buttons">
<a href="" id="home"> </a>
etc.
</div>
css:
#navigation_buttons a
{
height:???px;
Width:???px;
}
#navigation_buttons a#home
{
background-image:???;
}
#navigation_buttons a#home:hover
{
background-image:???;
}
Last edited by simster; 03-26-2009 at 05:56 AM..
|