Results 1 to 2 of 2

Thread: Need help to slightly modify a script

  1. #1
    Join Date
    Feb 2009
    Posts
    159
    Thanks
    60
    Thanked 3 Times in 3 Posts

    Talking Need help to slightly modify a script

    On my site http://www.robinsden.110mb.com/opening.html
    I have a script that John helped create for me and I would like to know if someone could help me modify it just a little bit more.

    What I would like is to make it so that the links are (dark blue) #000099 when know one is hovering over them and when they hover over them for them to change to (green) #009900.

    The tricky part is that I don't want the change to effect any other links on the page. I only want the linking color change to effect the links in the footer.

    The link to the java script is:
    http://www.robinsden.110mb.com/Scripts/footer.js

    Thanks for any help
    Last edited by robin9000; 02-27-2009 at 05:34 PM.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Add this to your css code:
    Code:
    #bgfooter a {
    color: #009;
    }
    #bgfooter a:hover {
    color: #090;
    }
    Good luck!

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
  •