Results 1 to 5 of 5

Thread: Style Sheet

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 2001
    Location
    Egypt
    Posts
    179

    Style Sheet

    Hello,

    I have applied the followin styles:

    A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7}
    A.Prog:link {TEXT-DECORATION: none;color: #cce4f7}
    A.Prog:Active {TEXT-DECORATION: none;color:#cce4f7}
    A.Prog:visited {TEXT-DECORATION:none ;color:#cce4f7}

    when the mouse pointer be over a link that was not visited before it will be underlined,
    but those links which are visited before doesn't have underline when mouse pointer be over them.

    I want the link (what ever it was visited or not) be without underline when the mouse out, and underlined when the mpouse over.
    What changes I have to do for these styles.

  2. #2
    scoutt
    Guest
    well how are you calling them in your lnks? becasue that's what it should do from what you have.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Feb 2001
    Location
    Egypt
    Posts
    179
    I use the link as follows:

    <A class="Prog" href="...">-----</A>

  4. #4
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    change to:

    Code:
    A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7} 
    A.Prog:link {TEXT-DECORATION: none;color: #cce4f7} 
    A.Prog:Active {TEXT-DECORATION: none;color:#cce4f7} 
    A.Prog:visited {color:#cce4f7}
    My evil laugh has a squeak in it.

    kristopherwilson.com

  5. #5
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    This is actually all you need:

    Code:
    A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7} 
    A.Prog {TEXT-DECORATION: none;color: #cce4f7}
    My evil laugh has a squeak in it.

    kristopherwilson.com

Posting Permissions

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



Click Here to Expand Forum to Full Width