V, you are eventually going to hate me 
Even your avatar is glaring down at me right now as I write this.
Ok, so I will post some code and try to make sense of it
Here is what I will have on my index page, inside the <head>
Code:
<link rel="stylesheet" type="text/css" href="nn4.css" title="green" />
Ok, now inside that file, I will have this
Code:
@import url("green1.css");
@import url("blue.css");
@import url("darkgold.css");
body {
text-align: center;
margin: 0px;
padding: 0px;
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
font-variant: normal;
color: #000000;
}
html>body #contentarea {border-top:1px dashed #339933;
}
#menu {
padding: 0px;
background-color: #E3F4DF;
border-right: 1px solid #000;
border-left :1px solid #000;
border-top: none;
}
a.menu:link, a.menu:visited {
font-family: Georgia, Times New Roman, Times, serif;
font-size: 12px;
font-style: normal;
font-weight: bold;
font-variant: normal;
color: #000000;
background-color: #E3F4DF;
text-align: center;
border-right: 1px dashed #339933;
text-decoration: none;
padding-right: 10px;
padding-left: 10px;
}
But I don't need a title for those imports? This is where I need help clearing it up.
Bookmarks