UncleMortis
Programmer
I've haven't made a web page for a month or so and I was fiddling around with one the other day. I had the A and A:hover set so that the hover changed colour. However the hover only worked in my div tag and no where else? Have I forgotten to add to make it go through the whole document.
here's the css file... I normally don't add the visited part of the A but this time my A links were upredictable for some reason and not reacting like they should have.
here's the css file... I normally don't add the visited part of the A but this time my A links were upredictable for some reason and not reacting like they should have.
Code:
body {color:silver;
background: white url(back_102.jpeg) repeat center center;}
a:link {color:#4169e1;
text-decoration:none;}
a:hover {color:#3cb371;
text-decoration:none;}
a:visited {color:#4169e1;
text-decoration:none;}
div.links { padding: 0.5em;
border-style: solid;
border-width: 2px;
float:right}
p {font-family: papyrus;
times roman}