Jump to content

[SOLVED] A:link color problems


neoform

Recommended Posts

<style>
.class1, class1 a { color: blue; }
.class2, class2 a { color: green; }
</style>

<div class="class1">
   <a href="moo.html">This link shows up as blue</a>
   <a href="moo2.html" class="class2">This link shows up as blue even though it should be green.</a>
</div>

 

Anyone know how to get around this without resorting to applying classes to every <a> tag.. ? Like say I want to change the color of a single link while leaving default to all the others..

Link to comment
https://forums.phpfreaks.com/topic/44519-solved-alink-color-problems/
Share on other sites

ok, just noticed there was a bug in the css, but the color problem is there now.

 

<style>
.class1, .class1 a { color: blue; } /* forgot to put the dot in front of the second class name */
.class2, .class2 a { color: green; }
</style>

<div class="class1">
   <a href="moo.html">This link shows up as blue</a>
   <a href="moo2.html" class="class2">This link shows up as blue even though it should be green.</a>
</div>

 

any ideas?

This is the correct CSS:

.class1 a{ color: blue; }
.class1 a.class2 { color: green; }
</style>

<div class="class1">
   <a href="moo.html">This link shows up as blue</a>
   <a href="moo2.html" class="class2">This link shows up as blue even though it should be green.</a>
</div>

You can change the CSS to this:

/* all anchors in the document will have a defualt colour of blue */
a { color: blue; }
/* all anchors with the class of 'class2' a green colour - this will override the default colour */
a.class2 { color: green; }

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.