Helping ordinary people create extraordinary websites!

Go Back   Web Development Forum > Website Designing > HTML/CSS
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-25-2008, 01:04 AM
Junior Member
 
Join Date: Apr 2008
Posts: 11
Default Anchor Text Style

Using CSS you can change the way the anchor of the link looks.

Four states of the anchor text can be styled.

link: Affects unvisited links
visited: Affects links that your browser knows that you've visited.
hover: affects the link that your mouse is hovering over
active: the active link that has been selected by tabbing over.

Code:
<style>
a:link {color: #FF0000; font-weight: bold;} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */
</style>
The above example makes the unvisited links bold.


Last edited by ryanhellyer : 04-25-2008 at 02:09 AM. Reason: Link removed: Please keep all non-post related links in your signature.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-25-2008, 02:09 AM
ryanhellyer's Avatar
Super Moderator
 
Join Date: Dec 2007
Posts: 632
Default

Thanks for the tips Chetan.

I (and lots of other people) have a bad habit of not bothering to set visited links. They're a useful addition so that visitors know where they have an haven't been.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-26-2008, 01:04 AM
Junior Member
 
Join Date: Apr 2008
Posts: 11
Default

thanks.
but i will try to share something more.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 03:53 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.