It's not online yet, here's the CSS. I changed the width of the wrapper from 960 px to 760 px and that seemed to do the trick, though it doesn't look nearly as nice.
Code:
html, body {
margin: 0;
padding: 0;
background-color: #87b381;
color: #fbf8a4;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 16px;
font-weight: bold;
}
#wrapper {
background-color: #000000;
width: 760px;
margin: auto;
margin-top: 12px;
margin-bottom: 12px;
border: 2px solid #fbf3af;
}
.slide {
float: right;
}
h1 {
font-size: 20px;
font-family: "freestyle script", mistral, serif;
}
#head h1 {
position:relative;
left: 250px;
top: 125px;
}
#nav {
font-family: georgia, "palatino linotype", serif;
font-size: 18px;
float: left;
}
#nav ul li {
list-style: none;
font-weight: normal;
margin-top: 20px;
background-color: #136108;
width: 150px;
border-left: 4px solid #41763a;
border-top: 2px solid #87b381;
}
#nav a {
width: 130px; /* same width as ul li (minus padding), makes entire box clickable */
display: block;
padding: 10px;
}
#nav a:link, #nav a:visited, #nav a:active {
color: #fbf8a4;
text-decoration: none;
}
#nav a:hover {
background-color: #fbf8a4;
color: #000000;
}
#content {
clear: right;
padding-left: 210px;
padding-top: 10px;
padding-right: 20px;
}
a:link, a:visited, a:active {
color: #c5c7c5;
padding: 2px;
}
#content a:hover {
color: #136108;
background-color: #c5c7c5;
}
Bookmarks