Changing color of the empty links...
Forum » The Community / How may we help you? » Changing color of the empty links...
Started by: BrunhildaBrunhilda
On: 1227017509|%e %b %Y, %H:%M %Z|agohover
Number of posts: 4
rss icon RSS: New posts
Changing color of the empty links...
BrunhildaBrunhilda 1227017509|%e %b %Y, %H:%M %Z|agohover

How do I do this? I know how to change the full links (using CSS), but I don't know how to change the color of the empty links…


The trouble with the world is that the stupid are cocksure and the intelligent are full of doubt. Bertrand Russell

unfold Changing color of the empty links... by BrunhildaBrunhilda, 1227017509|%e %b %Y, %H:%M %Z|agohover
Re: Changing color of the empty links...
SquarkSquark 1227017946|%e %b %Y, %H:%M %Z|agohover

For non-existing links, the syntax is:

a.newpage {
    color: #your-color;
    text-decoration: your-text-decoration;
}

and for hover of non-existing links:

a.newpage:hover {
    color: #your-color;
    text-decoration: your-text-decoration;
}
last edited on 1227018063|%e %b %Y, %H:%M %Z|agohover by Squark + show more
unfold Re: Changing color of the empty links... by SquarkSquark, 1227017946|%e %b %Y, %H:%M %Z|agohover
Re: Changing color of the empty links...
BrunhildaBrunhilda 1227022093|%e %b %Y, %H:%M %Z|agohover

Thanks!


The trouble with the world is that the stupid are cocksure and the intelligent are full of doubt. Bertrand Russell

unfold Re: Changing color of the empty links... by BrunhildaBrunhilda, 1227022093|%e %b %Y, %H:%M %Z|agohover
Re: Changing color of the empty links...
SquarkSquark 1227083244|%e %b %Y, %H:%M %Z|agohover

No problem :)

unfold Re: Changing color of the empty links... by SquarkSquark, 1227083244|%e %b %Y, %H:%M %Z|agohover
New post

Bookmark and Share

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.