Text That Underlines With Scroll Over

Discussion in 'HTML & Website Design' started by travoholic, Nov 10, 2005.

  1. #1
    Hi guys,

    I was hoping someone could point me in the right direction. I'll be attempting to use CSS to control my fonts but would also like to have it so that when I scroll over a link, it underlines and chages colour. I see this all over the web so assume it's a prett srtaight forward thing to accomplish.

    Could someone direct me to a site with directions on how to accomplish this?

    Thanks!
    Kirsty
     
    travoholic, Nov 10, 2005 IP
  2. dct

    dct Finder of cool gadgets

    Messages:
    3,132
    Likes Received:
    328
    Best Answers:
    0
    Trophy Points:
    230
    #2
    Use CSS, in the included CSS file do something like
    
    a:link {
    	color: #B40505;
    	text-decoration: none;
    }
    
    a:visited {
    	color: #B40505;
    	text-decoration: none;
    }
    
    a:hover {
    	color: #B40505;
    	text-decoration: underline;
    }
    
    Code (css):
     
    dct, Nov 10, 2005 IP
  3. travoholic

    travoholic Well-Known Member

    Messages:
    299
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    #3
    Thanks! I'm still learning CSS and it'd be helpful if you let me know what to type in the HTML document as well.

    Thanks,
    Kirsty
     
    travoholic, Nov 10, 2005 IP
  4. dct

    dct Finder of cool gadgets

    Messages:
    3,132
    Likes Received:
    328
    Best Answers:
    0
    Trophy Points:
    230
    #4
    Put the CSS I mentioned in my previous post in its own file and then in the header section of your HTML file include the CSS file by doing:
    
    <head>
    
    <link rel="stylesheet" href="http://www.yourdomain.com/style.css" type="text/css" media="screen" />
    
    </head>
    
    Code (html4strict):
     
    dct, Nov 10, 2005 IP
    travoholic likes this.
  5. travoholic

    travoholic Well-Known Member

    Messages:
    299
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    #5
    Great, thanks again!
     
    travoholic, Nov 10, 2005 IP