Skip to:
Content
Pages
Categories
Search
Top
Bottom

Base/Affiliate Program title colors won't change


  • Rapforthemoment
    Participant

    @rapforthemoment

    Hello, Buddypress community. I have an issue I can’t seem to find the answer to.

    On this link, you’ll see my profile: http://rapforthemoment.com/emcees/admin/profile/

    The title colors for Base, Affiliate Program, and myCRED are all yellow. No matter what code I put in it won’t change. I want #cc0200 but can’t seem to get it to alter.

    Please assist me if possible. Thank you in advance for all your work and input!

    -Jeff

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

  • mcpeanut
    Participant

    @mcpeanut

    .label,.badge{
    	color:#cc0200 !important;
    }

    Rapforthemoment
    Participant

    @rapforthemoment

    Well that did it! Thank you so much. The firebug code gave me this:

    .label, .badge {
    color:#F9D800;
    display:inline-block;
    font-size:11.844px;
    font-weight:bold;
    line-height:14px;
    padding:2px 4px;
    }

    How do I go about using this to get to the code you gave me?


    mcpeanut
    Participant

    @mcpeanut

    @rapforthemoment The answer is actually in your question 🙂 as you already have the code there.

    all i did was take the top bit of the code you posted above which would be this

    .label,.badge {
          color:#F9D800;
    }

    And then add the color you wanted as well as the !important declaration to it, so the result is as follows

    .label,.badge{
          color:#cc0200 !important;
    }

    The !Important declaration when added to this selector in custom css ensures that it will override the original code as it is given priority.

    Hope this explains a little for you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Base/Affiliate Program title colors won't change’ is closed to new replies.
Skip to toolbar