Skip to:
Content
Pages
Categories
Search
Top
Bottom

Change color text ‘Reply to’

  • @myrax

    Participant

    Thanks to this thread: https://bbpress.org/forums/topic/how-do-i-change-the-color-of-the-text-and-box/ I was able to change a lot of colors, since the theme of my site is dark background with white letters.

    There is one code I’m still looking for.
    When you reply to a topic, above the large reply field it says ‘Reply to [name of topic].
    This text is still in white and it needs to be black.

    Can anyone provide me with the right code so I can add this to the custom CSS?
    Much appreciated!

Viewing 6 replies - 1 through 6 (of 6 total)
  • @casiepa

    Moderator

    Hi @myrax

    Should be something like this:

    #bbpress-forums fieldset.bbp-form legend {
        background-color: #121212;
        color: #DDDDDD;
    }

    @myrax

    Participant

    Thanks a million, that worked!

    @myrax

    Participant

    Do you happen to have the answer to this as well…?
    It is WooCommerce related, not bbPress though.

    I would like to change the color of the text when filling out username.
    Through WooCommerce I have a page ‘My account’ and in it two text boxes. One for username, one for password.
    The text on my site is white, the background of these fields also.
    So when you type name or passwords, it’s invisable.

    I would like to add code to custom CSS to solve this.

    What would be the code for this?

    I think the element is called something like this…
    input#username.woocommerce-Input.woocommerce-Input–text.input-text.

    (I am slowly learning how CSS works, tried to do it myself but it didn’t work…)

    @jamiehennings

    Participant

    Hello,

    I am looking to change color of “text” and I tried to it by using CSS but it can’t work, but when I use the instruction that you provide in your thread then my problem get resolved.

    @myrax

    Participant

    The trick to change the color of the text of the username turned out to be very simple.

    #username{
    color: #000000;
    }

    @spaceinteriors

    Participant

    Awesome… ,

    Thanks buddy

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