Hi - I am trying to do something very simple - change the colour of the hyperlink in the breadcrumbs (where it says You Are Here: -Home- )
I want to change the colour of the word home to white with maybe a different rollover colour.
If i change the general hyperlink colour in the css it changes for all the other links aswell - how do i isolate that one ?
http://suasookapap.com/sook.php?page_id=12
ClaytonJames
Member
Posted 1 year ago #
This controls the color of the breadcrumb text
/***** Breadcrumb ********************/
.breadcrumb {
background: #fe7f02 url(images/widget-headline.png) top repeat-x;
color: #feffff;
If you add this to the bottom of your style sheet, (or under the breadcrumb section) I think you might be able to control the color of the breadcrumb links.
.breadcrumb a {color:#fff;}
.breadcrumb a:hover {color:#000;}
thanks that totally worked :)
ClaytonJames
Member
Posted 1 year ago #