Results 1 to 3 of 3

Thread: Simple question :)

  1. #1
    Join Date
    Mar 2008
    Location
    Latvia
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Simple question :)

    How can i make effect when i mouseover on hyperlink it underline?

    Thx

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Using css:

    Code:
    <style type="text/css">
     a:link,a:visited {
       color: #000;
       text-decoration: none;
     }
     a:hover {
       color: #0000FF;
       text-decoration: underline;
     }
    </style>
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. The Following User Says Thank You to thetestingsite For This Useful Post:

    VelvetMorning (04-08-2008)

  4. #3
    Join Date
    Mar 2008
    Location
    Latvia
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    It work
    Thanks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •