• Resolved imagex

    (@imagex)


    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 ?

    https://suasookapap.com/sook.php?page_id=12

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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;}

    Thread Starter imagex

    (@imagex)

    thanks that totally worked ??

    You’re welcome.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Breadcrumb Link Colour’ is closed to new replies.