Also, I would recommend taking this to an external style sheet (style.css) if you plan on styling any thing else within your document.
You can load an external style sheet by adding this bit of code to the <head> section of your html document:
Code:
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
And it would look something like this:
Code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Chasery.com // A portfolio dedicated to the work of Ryan Chase</title>
<meta name="Keywords" content="Art, Photography, Chase, Design, Web, CSS, Website, Coding, HTML, Photoshop, Illustrator, Flash, AI, PS, CS3, Adobe" />
<meta name="Description" content=" Web Portfolio of Ryan Chase - Web Developer and Graphic Designer" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
</head>
Standard practice (I typically see this) is to create a css folder in the directory/folder that your html file sits in.
This is how the style sheet would look:
Code:
/* CSS Document */
/* General Styles */
.wireframemenu{
background-color: white;
}
.wireframemenu ul{
padding: 0;
margin: 0;
list-style-type: none;
}
.wireframemenu li{
border: 1px solid #C0C0C0;
display: inline;
float: left;
padding: 0;
margin: 0;
text-align: center;
width: 170px;
}
.wireframemenu a{
font: bold 13px Verdana;
padding: 4px 3px;
display: block;
width: 100%; /*Define width for IE6's sake*/
color: #595959;
text-decoration: none;
border-bottom: 1px solid #C0C0C0;
}
.wireframemenu a:visited{
color: #595959;
}
html>body .wireframemenu a{ /*Non IE rule*/
width: auto;
}
.wireframemenu a:hover{
background-color: #F8FBBD;
color: black;
}
Bookmarks