English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have used a css script in the head and thats for anchor lnks and it is applied on al the links on the page, but i wish not to use it on few links is there any class id i should put to ignore the css from the head. or any other way...

2006-09-26 05:37:03 · 1 answers · asked by sunny_wantsome 3 in Computers & Internet Programming & Design

1 answers

you will have to distinguish the two types of links. The only way to do that is to add classes to one or both sets of links:

Looks like the standard
Looks special

and then define the styles in the style sheet with:

a.standardLinks{/*styles*/}
a.specialLinks{/*styles*/}

also, if all the links that are supposed to be different are in one div or something, you can just do it all in css: