im using a single stylesheet for all my pages, and everything works fine... except my links. for some reason... the links have the regular underlined blue of regular links on every other computer... and they look as they should on mine. my website is here (<!-- m --><a class="postlink" href="http://66.246.54.225/~geldin">http://66.246.54.225/~geldin</a><!-- m -->). i don't know why it is doing this. can anybody help?
this forum has been great. thanks guys!
://mattnevermind about the top part... i have another question:
does anyone here clean up css files? i think the problem is just that mine is a little junky... and could use some cleaning. i ran it through a validator... and a lot of errors and warnings poped up, but they were kind of complicating to interpret. if anyone can clean up my css for me... i'd be soo soo soo appriciative. the least i could do would be to put a link on my site to increase your traffic or something. i could really use the help. here's the code below. thanks a bunch!
://matt
a:active {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#000000";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
}
a:visited {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#000000";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
}
a:hover {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color : "#B1D4D9";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
background-color:"#800000";
}
body {
font-family : "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#800000";
vertical-align : "top";
text-align : "left";
padding : "2px";
margin : "2px";
background-color: "#B1D4D9";
scrollbar-face-color: "#B1D4D9";
scrollbar-shadow-color: "#B1D4D9";
scrollbar-highlight-color: "#B1D4D9";
scrollbar-3dlight-color: "#B1D4D9";
scrollbar-darkshadow-color:"#B1D4D9";
scrollbar-track-color: "#B1D4D9";
scrollbar-arrow-color: "#800000";
font-size: "xx-small";
}
body {
background-image: url("bk_new_pagewhere_is_my_mind.jpg");
background-repeat:
no-repeat;
background-attachment:
fixed
}In CSS, most stuff should stay unquoted. remove the quote marks, and things get a lot better. For example:
a:active {
font-family: Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
text-decoration: none;
font-weight: bold;
font-size: xx-small;
}thanks for the tip!also, when you're in one element, it works a lot better for some unknown reason if the font-family is the last attribute you give, such as:
a:hover {
color : #B1D4D9;
text-decoration: none;
font-weight: bold;
font-size: xx-small;
background-color: #800000;
font-family: Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}
and also, why do you have 2 body elements? All of that background stuff can go in the first one as well.
Dan
this forum has been great. thanks guys!
://mattnevermind about the top part... i have another question:
does anyone here clean up css files? i think the problem is just that mine is a little junky... and could use some cleaning. i ran it through a validator... and a lot of errors and warnings poped up, but they were kind of complicating to interpret. if anyone can clean up my css for me... i'd be soo soo soo appriciative. the least i could do would be to put a link on my site to increase your traffic or something. i could really use the help. here's the code below. thanks a bunch!
://matt
a:active {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#000000";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
}
a:visited {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#000000";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
}
a:hover {
font-family: "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color : "#B1D4D9";
text-decoration: "none";
font-weight: "bold";
font-size: "xx-small";
background-color:"#800000";
}
body {
font-family : "Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif";
color: "#800000";
vertical-align : "top";
text-align : "left";
padding : "2px";
margin : "2px";
background-color: "#B1D4D9";
scrollbar-face-color: "#B1D4D9";
scrollbar-shadow-color: "#B1D4D9";
scrollbar-highlight-color: "#B1D4D9";
scrollbar-3dlight-color: "#B1D4D9";
scrollbar-darkshadow-color:"#B1D4D9";
scrollbar-track-color: "#B1D4D9";
scrollbar-arrow-color: "#800000";
font-size: "xx-small";
}
body {
background-image: url("bk_new_pagewhere_is_my_mind.jpg");
background-repeat:
no-repeat;
background-attachment:
fixed
}In CSS, most stuff should stay unquoted. remove the quote marks, and things get a lot better. For example:
a:active {
font-family: Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
text-decoration: none;
font-weight: bold;
font-size: xx-small;
}thanks for the tip!also, when you're in one element, it works a lot better for some unknown reason if the font-family is the last attribute you give, such as:
a:hover {
color : #B1D4D9;
text-decoration: none;
font-weight: bold;
font-size: xx-small;
background-color: #800000;
font-family: Georgia, Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}
and also, why do you have 2 body elements? All of that background stuff can go in the first one as well.
Dan