Results 1 to 2 of 2

Thread: On Hover Not Working

  1. #1
    Join Date
    Dec 2008
    Location
    Selby, North Yorkshire
    Posts
    90
    Thanks
    28
    Thanked 2 Times in 2 Posts

    Default On Hover Not Working

    1) Script Title:
    Fading Ticker Tape Script

    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...tickertape.htm

    3) Describe problem:
    Why doesn't the clickable link script work?
    Here's my script;
    Code:
    .subtickertapefont a{
    color:blue;
    text-decoration:underline;
    a:hover{color:red; text-decoration:none; }
    }
    http://www.hillamhotdogs.co.uk/TestArea/TestPage.htm
    Last edited by BorderTerroir; 03-31-2009 at 12:53 PM.

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Should be:
    Code:
    .subtickertapefont a{
    
      color:blue;
    
      text-decoration:underline;
    
    }
    
    a:hover{
    
      color:red;
    
      text-decoration:none;
    
    }
    
    Jeremy | jfein.net

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

    BorderTerroir (03-31-2009)

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
  •