Thanks for the help. I ended up floating to the left still and just using it that way. I got impatient and just went with it and actually don't mind how it looks atm. I haven't worked on it today because I'm checking out some jquery and gonna learn how to create drop down menus with it.
html
Code
<html>
<head>
<meta content="text/html; charset=windows-1252" http-equiv="content-type">
<link type="text/css" rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body> <img src="images/banner1.png">
<!--MENU-->
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Community</a></li>
<li><a href="#" class="endmenu">Shop</a></li>
</ul>
</nav>
</body>
</html>
css
Code
* {
margin: 0;
padding: 0;
display: block;
}
body {
width: 1000px;
margin: 0 auto;
padding: 25px;
background-color: #bbbbbb;
color: #444444;
}
a {
text-decoration: none;
}
nav {
position: absolute;
left: 0;
width: 100%;
background-color: #333333;
border: 2px solid #000000;
}
nav ul {
margin: 0 auto;
width: 1000px;
}
nav ul li {
float: left;
}
nav ul li:hover {
background-color: #444444;
}
nav ul li a {
padding: 15px 10px 15px 10px;
text-align: center;
color: #ff0000;
font-family: sans-serif;
font-size: 15px;
border-left: 2px solid #000000;
}
nav ul li a.endmenu {
border-right: 2px solid #000000;
}
nav ul li a:hover {
color: #ffffff;
}
Let me know if you think there's anything I should focus on doing better or if there's a more effective way of doing what I've done so far. I'm definitely open to criticism and would like to know more efficient ways if they exist.
This post was edited by Santora on Jul 22 2013 09:03pm