Changing Link Colors/Underline
-
I’m trying to get this all situated, and luckily my site is very minimal. I only have two issues and I’ll be good to go once those are fixed.
I came here and saw a few CSS codes to use to do what I want done, but they’re not working. I also searched for answers but nothing is working. I got rid of the menu and header image because they weren’t what I wanted and I just added those elements in the body of the page, but now the links are not looking like the menu links did. So I just now got them to be all white, but they still have underlines on them and the hover color is wrong. Here’s my code.
`a:link {
color: white;
background-color: transparent;
text-decoration: none;
}a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}a:hover {
color: white;
background-color: transparent;
text-decoration: none;
}a:active {
color: white;
background-color: transparent;
text-decoration: none;
}`The page I need help with: [log in to see the link]
The topic ‘Changing Link Colors/Underline’ is closed to new replies.