I have a style sheet set up to display all links in green...
There are a few instances where I want to vary from this rule. Presently, I am manually forcing the color change in the HTML...
Is there a way in CSS (CSS1 preferred) to create a style to override the existing style for 'A HREF's? Or should I continue to manually change the color within the HTML?
- - -
Alternately, I would be interested in applying the green link color to whatever links reside in a particular layer. Ex...
If I cannot create a style to override another, is it possible to create a unique link style for different layers? All links in my content layer would be green; all links in my menu layer would be orange.
- - picklefish - -
Why is everyone in this forum responding to me as picklefish?
Code:
A { FONT-WEIGHT: bold; COLOR: green; TEXT-DECORATION: none }
Code:
<A href="[URL unfurl="true"]http://www.google.com"><FONT[/URL] color=#594d3d> Google </FONT></A>
- - -
Alternately, I would be interested in applying the green link color to whatever links reside in a particular layer. Ex...
Code:
#menu { top: 75px; left: 0px; width: 150px; height: 100%; }
#content { top: 75px; left: 150px; height: 100%; }
If I cannot create a style to override another, is it possible to create a unique link style for different layers? All links in my content layer would be green; all links in my menu layer would be orange.
- - picklefish - -
Why is everyone in this forum responding to me as picklefish?