![]() |
|
||||||||||
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||
|
|
#1 |
|
WLC Member
Join Date: Nov 2007
Posts: 11
|
I'm somewhat of a newcomer to xhtml/css standards webiste creation. I'm working on a site for a client and the css for the links is messed up. My links, once visited, take on the style of certain other links on the website. Here's a URL for the site I'm working on
http://www.newcreationstudios.com/test/estimatingjobs/ Click on the logo or contact link in the header to see what I'm talking about. It's happening to all the links on the site. Thanks in advance for any help. |
|
|
|
|
|
#2 |
|
WLC Lover
Join Date: Sep 2007
Location: Philippines
Posts: 323
|
you seemed to missed out on something in your css, I see that you are grouping your declarations, like
Code:
#mastTop a, a:visited { code here}
If you are going to make multiple styles on your links what you have to do is to repeat the #div also, so to fix it you have to do from this Code:
#mastTop a, a:visited {
color: #00543d;
text-decoration: none;
}
Code:
#mastTop a, #mastTop a:visited {
color: #00543d;
text-decoration: none;
}
Do this to the rest of your css who have conflicting style properties and test it.
|
|
|
|
|
|
#3 |
|
WLC Member
Join Date: Nov 2007
Posts: 11
|
That fixed it. I figured it was something simple. Thanks for your help.
|
|
|
|
|
|
#4 |
|
WLC Lover
Join Date: Sep 2007
Location: Philippines
Posts: 323
|
glad to help out!
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
Linear Mode |
|
|