Results 1 to 8 of 8
  1. #1
    Join Date
    Jan 2010
    Location
    Broome
    Posts
    325
    Plugin Contributions
    0

    Default How to change the Breadcrumb navigation link color?

    Hi have been trying to change the css properties for the link color in the breadcrumb navigation.

    The view style information in the web developers toolbar says that is the following code:

    #navCatTabs li .category-top .category-subs-selected{}

    I have tried putting in a: styles .. like so
    #navCatTabs li .category-top .category-subs-selected a:link{ color: #000;}
    #navCatTabs li .category-top .category-subs-selected a:visited{ color: #ed626c;}
    #navCatTabs li .category-top .category-subs-selected a:hover{ color: #575757;}
    #navCatTabs li .category-top .category-subs-selected a:active{ color: #575757;}

    but it changes nothing .. The css line above this

    #navCatTabs li .category-top:hover{ color: #575757; } does alter the hover state but I have tried copying this line too and adding in the link style but no luck there either.

    Appreciate any help.

  2. #2
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,145
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    If you're trying to change the color in the breadcrumbs, you're barking up the wrong tree with #navCatTabs.

    Try adding this to your stylesheet instead.
    Code:
    #navBreadCrumb a:link {
    	color: #000000;
    	text-decoration: none;
    	}
    
    #navBreadCrumb a:visited {
    	color: #ed626c;
    	text-decoration: none;
    	}
    
    #navBreadCrumb a:hover {
    	color: #575757;
    	text-decoration: none;
    	}
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  3. #3
    Join Date
    Jan 2010
    Location
    Broome
    Posts
    325
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    Hi sorry didnt make myself clear .. i am trying to change the navCatTabs .. where it says Czech Glass Seed Beads in grey .. this is a navigation of your categories yes? I am trying to change the color from grey to black. Thanks

  4. #4
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,145
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    A link to your website would be helpful.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  5. #5
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    18,031
    Plugin Contributions
    1

    Default Re: How to change the Breadcrumb navigation link color

    #navCatTabs li a:link{ color: #000;

  6. #6
    Join Date
    Jan 2010
    Location
    Broome
    Posts
    325
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    Hi thanks for your suggestions but I already have that and it is not working .. so strange

    #navCatTabs li a:link{ color: #000; }
    #navCatTabs li a:visited{ color: #ccc; }
    #navCatTabs li a:hover{ color: #02b4ce; }
    #navCatTabs li a:active{ color: #02b4ce; }
    #navCatTabs li{ display: inline; }

    something wrong with my code? Thanks

    site is http://www.broomebeads.com.au/

  7. #7
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,145
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    I looked at your site using Firefox with the web developer addon.

    Currently, your stylesheet says

    Code:
    #navCatTabs li a:link{ color: #fff; }
    #navCatTabs li a:visited{ color: #ccc; }
    #navCatTabs li a:hover{ color: #02b4ce; }
    #navCatTabs li a:active{ color: #02b4ce; }
    #navCatTabs li{ display: inline; }
    which is displaying "Czech Glass Seed Beads" in white. If I put my cursor on it, the text turns grey which is exactly what I'd expect given the colors listed.

    If you want the text in black, you have to change the #fff to #000. I tried it and it works. How are you changing the stylesheet? Is it possible the permissions are preventing the file from being overwritten?
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  8. #8
    Join Date
    Jan 2010
    Location
    Broome
    Posts
    325
    Plugin Contributions
    0

    Default Re: How to change the Breadcrumb navigation link color

    Hi thanks so much for your trouble, i think it may have been the permissions ... i would never have checked that .. so thanks again .. you have saved me hours

 

 

Similar Threads

  1. How change color of top navigation bar
    By lieven23 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 28 Aug 2008, 01:27 AM
  2. Want to change my Breadcrumb Home Link and text
    By arth in forum Basic Configuration
    Replies: 3
    Last Post: 10 Jul 2007, 05:04 AM
  3. Navigation Link Color
    By neophyte2007 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 30 May 2007, 02:53 PM

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
  •