Results 1 to 4 of 4
  1. #1
    Join Date
    Dec 2006
    Posts
    8
    Plugin Contributions
    0

    Default Change link colors in left nav column

    I have been trying to change the link colors in the left nav column so they are different than the rest of the site links.

    So I added this to my style sheet
    Code:
    #navColumnOne a:link {
        color: #FFFFFF;
        }
    #navColumnOne a:hover {
        color: #ee7029;
        }
    #navColumnOne a:active {
        color: #FFFFFF;
        }
    #navColumnOne a:visited {
        color: #FFFFFF;
        }
    It all seemed to work great but it seems that if you click on a link in nav column one then the hover effect stops working for that link. I am sure it is somthing to do with the way I have added the info to the style sheet but for the life of me I can not figure it out.

    You can see the site here.

    Thanks in advance.

  2. #2
    Join Date
    Dec 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Change link colors in left nav column

    I think figured out my problem. I changed the order of the code in the style sheet from
    Code:
     
    #navColumnOne a:link {
    color: #FFFFFF;
    }
    #navColumnOne a:hover {
    color: #ee7029;
    }
    #navColumnOne a:active {
    color: #FFFFFF;
    }
    #navColumnOne a:visited {
    color: #FFFFFF;
    }
    To
    Code:
     
    #navColumnOne a:link {
        color: #FFFFFF;
        }
    #navColumnOne a:visited {
      color: #FFFFFF;
      }
    #navColumnOne a:hover {
        color: #ee7029;
        }
    #navColumnOne a:active {
        color: #FFFFFF;
        }
    If some one could confirm that the hover effects are working after a link is clicked I would appreciate it.

  3. #3
    Join Date
    Mar 2004
    Posts
    688
    Plugin Contributions
    0

    Default Re: Change link colors in left nav column

    Yep... working as you hope for me, anyway!
    Marg
    I looked earlier and have that to go by.

  4. #4
    Join Date
    Dec 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Change link colors in left nav column

    Thanks for looking!

 

 

Similar Threads

  1. How can I change link colors in header, without changing all other link colors?
    By coreyalderin in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 20 Jun 2012, 03:17 AM
  2. Different Nav link Colors
    By jeffsuwanee in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 29 Sep 2011, 09:52 AM
  3. Importing left hand nav column from SBI! site
    By GrubbyFingers in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 2 Apr 2008, 11:40 AM
  4. nav column colors issue
    By traders in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 29 Nov 2007, 06:01 PM
  5. nav column left & right
    By Prellyan in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 28 Mar 2007, 02:42 PM

Posting Permissions

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