Hey everyone, ok, I am working with a site, had css outsourced and what not, have an ameteur level of knowledge of css. However, I can't seem to get specific link attributes associated to the radio station list. Can anyone offer a suggestion of what needs to be done.

The site is www.groundwire.net/radio.cfm

The style sheet is www.groundwire.net/style.css

Here is what I thought I was supposed to do, but it is not working:

#mid p a:link{
font:normal 13px/15px Arial, Helvetica, sans-serif;
color:#feba27;
background-color:#292929;
margin:0;
padding:0;
text-decoration: none;
}
#mid p a:visited{
font:normal 13px/15px Arial, Helvetica, sans-serif;
color:#FD7302;
background-color:#292929;
margin:0;
padding:0;
text-decoration: none;
}
#mid p a:hover{
font:normal 13px/15px Arial, Helvetica, sans-serif;
color:#ffffff;
background-color:#292929;
margin:0;
padding:0;
text-decoration: underline;
}
#mid p a:active{
font:normal 13px/15px Arial, Helvetica, sans-serif;
color:#feba27;
background-color:#292929;
margin:0;
padding:0;
text-decoration: none;
}

Recommended Answers

All 2 Replies

Have you checked youir css file ... the code you have pasted here is not in your style.css file.

Please !! give me detail so i can help you.

Note that those four attributes can be overridden by browser settings.

For accessibility reasons, browsers can set constant values for the colors of links and the background. Your styles will be overridden if those settings are active.

All web designers should realize that these settings can be made, and not play too much with link colors.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.