hello, i use in my site on that css style between the head tags , to change the links color beside underline them on the all body . so i tried to move them to the css file with the other style to be able to edit the full style from the css file . but i didnt succeed . so please help me to move them to the css file with the same effect on the links thanks
Uhm, the pseudo-states (the part after the colon) inherit off the parent element... as such you should only have to say 'a' if you want to style ALL of them. a { text-decoration:none; color:#000; } That's it. You only state the substates after that IF they are going to have DIFFERENT values, not the same ones.