[SOLVED] Changing Breadcrumb link color

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
kyle21
New Member
New Member
Posts: 7
Joined: Thu Apr 16, 2009 6:40 pm

[SOLVED] Changing Breadcrumb link color

Post by kyle21 »

Yet another problem I can't seem to solve.

I want to change the breadcrumb link color, but right now it looks like I can only change it with the main link colors for the site.  If I change the div.breadcrumbs to color:white it only changes the text and not the links.  Bawww..  :(

Breadcumb CSS.

Code: Select all

div.breadcrumbs {
   padding: .7em 0 .7em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 0em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px solid #dedede;
   text-indent:1.5mm;
   background: url(uploads/images/breadcrumb_grade.gif) ; 
   color:white;

}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
   color:white;
   font-style:italic;
 }
Template Code.

Code: Select all

  {* Start Breadcrumbs *}
   <div class="breadcrumbs">
        {breadcrumbs starttext='You are here' root='Home' delimiter='»'}
   <hr class="accessibility" />
   </div>
   {* End Breadcrumbs *}
(Default Code Mostly)
Last edited by kyle21 on Mon Apr 27, 2009 6:02 pm, edited 1 time in total.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Changing Breadcrumb link color

Post by Dr.CSS »

How about targeting the a in the breadcrumb?...
kyle21
New Member
New Member
Posts: 7
Joined: Thu Apr 16, 2009 6:40 pm

Re: Changing Breadcrumb link color

Post by kyle21 »

You care to explain?  I'm still kind of a novice :'(  Sorry lol.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Changing Breadcrumb link color

Post by Dr.CSS »

kyle21
New Member
New Member
Posts: 7
Joined: Thu Apr 16, 2009 6:40 pm

Re: Changing Breadcrumb link color

Post by kyle21 »

Ok looks like I got it working.
Last edited by kyle21 on Mon Apr 27, 2009 6:02 pm, edited 1 time in total.
Post Reply

Return to “Layout and Design (CSS & HTML)”