Actually, so you can all see what im doing, here is the code from my presentation style sheet
/* Presentation Stylesheet */
h3, p {
margin:0;
padding:15px;
}
h4 {
margin:0;
padding: 5px 0;
}
p:first-letter {
font-size: 180%;
font-weight: bold;
color: orange;
}
A:link {color: orange; text-decoration:underline};
A:hover
{
color: blue;
text-decoration: none
};
A:active
{color: blue;
text-decoration: none
};
A:visited
{color: orange;
text-decoration: underline;
};
now, i might be missing somehting simple ... but what happens is if you freshly visit my page, everything works fine, but as soon as you view each page, that respective link will not respond anymore to the a:hover commands i have set up ... it simply reverts to the a:link and a:visited (since they are the same) stage .... i dont quite understand why ... it might be something simple that i just keep looking over, but i just dont know