Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to style bbpress breadcrumb


  • giuseppe23
    Participant

    @giuseppe23

    Hi , Is there any way to chnge the breadcumb link color?
    I tried

    .bbp-breadcrumb a{
    	color: #fff;
    }

    The code above does not change the color.

Viewing 3 replies - 1 through 3 (of 3 total)

  • peter-hamilton
    Participant

    @peter-hamilton

    perhaps

    .bbp-breadcrumb p a {}

    as well as

    .bbp-breadcrumb-home {}

    and

    .bbp-breadcrumb-current {}


    giuseppe23
    Participant

    @giuseppe23

    Peter thankyou but I tried like this and I just did again with yours now but didn’t change anything
    I did this one wich worked fine:

    .bbp-breadcrumb {
    	color: #fff;
    }

    Code above changed the color to white but codes below didnt change anything.

    .bbp-breadcrumb p a {color: #fff;}
    .bbp-breadcrumb-home {color: #fff;}
    .bbp-breadcrumb-current {color: #fff;}

    I have a black background of my wordpress site and site color is white for blog but for bbpress I changed only the header and footer background colors and used the code below

    #bbpress-forums a{
    	color: #000;
    }
    #bbpress-forums {
    	color: #000;
    }

    So I did this because bbp-topic has white background and in this case the links became #000 as site background but the breadcrumbs are on the top where the background is black too and I need to change the breadcrumb link color to white …


    giuseppe23
    Participant

    @giuseppe23

    Thats OK I found the solution..
    Changed the #bbpress-forums a with the code below

    #bbpress-forums .bbp-body a{
    	color: #000;
    }
    #bbpress-forums .bbp-body {
    	color: #000;
    }

    It worked fine..

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar