Forum Moderators: not2easy
The problem is I have 3 different colors on my website that the text is on, She has it set up so that the links are one color, they all also have a hover color. The problem is no one text color works with all 3 of my main page colors. can links on different parts of my page have different colors? if so how can this be done....please remember I know very little about css
#name1 {blah...}
#name1 a {color: blue;}
#name1 a:hover {color: red;}
#name2 {blah...}
#name2 a {color: green;}
#name2 a:hover {color: yellow;}
All links in div name1 will be blue and red when hovered over.
All links in div name2 will be green and yellow when hovered over.
There are many ways to do this in CSS - this is just one example. You can also modify the global stylesheet for each page.