Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbpress blockquote text color – how to change?

  • @dungeonlair

    Participant

    Hello, if someone can help me figure out how to change the bbpress blockquote text color I would appreciate it. Currently it is yellow (see attachment)…

    blockquote text color

Viewing 19 replies - 1 through 19 (of 19 total)
  • @robin-w

    Moderator

    put this in the custom css part of your theme

    blockquote {
    	color: blue;
    }

    @dungeonlair

    Participant

    Thank you for the response. I added the custom css as you suggested, but text is still yellow.

    @robin-w

    Moderator

    would need a link to an example on your site

    @dungeonlair

    Participant

    Here’s the link to the test blockquote…

    Question 3 – Best tabletop role-playing game?

    @robin-w

    Moderator

    suspect it requires me to be logged in ?

    @dungeonlair

    Participant

    I even installed the plugin SiteOrigin CSS to try and change the blockquote, but still no luck, see code below…

    blockquote p {
    color: blue;
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
    background-color: #000000;
    }

    It seems the code for the blockquote is being over ridden somewhere.

    @dungeonlair

    Participant

    oh yes, I created a login for you…

    RobinW

    @Robin-W

    @dungeonlair

    Participant

    Well, you should be able to view the forum without being logged in.

    @dungeonlair

    Participant

    My workaround was to add the black background so the yellow text is visible.

    @robin-w

    Moderator

    you link comes up with ‘can’t reach that page’ – even when I just try the site https://dungeonlair.com/

    @dungeonlair

    Participant

    Well that’s strange, but you can get to the site ok right?

    @robin-w

    Moderator

    nope, does the link in my post above work for you ?

    @dungeonlair

    Participant

    It does

    @dungeonlair

    Participant

    So Robin, did you create the bbp style pack plugin?

    @robin-w

    Moderator

    my firewall software doesn’t like your site

    try

    #bbpress-forums blockquote {
    	color: blue !important;
    }

    @dungeonlair

    Participant

    Very strange… so I tried adding the code you suggested in the css section of my word press theme, and it didn’t work.

    So I made a change to the css code in SiteOrigin css and added “!important” and that worked, see code below…

    blockquote p {
    color: blue !important;
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
    background-color: #000000;
    }

    @dungeonlair

    Participant

    so, why did adding “!important” allow the css to work?

    Also, thank you for your help, I really appreciate it.

    @robin-w

    Moderator

    ok, !important stops later css overwriting it, so it was a load order issue.
    and yes style pack is my plugin 🙂

    @dungeonlair

    Participant

    Nice job Robin, you’re awesome!

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