Skip to:
Content
Pages
Categories
Search
Top
Bottom

Post Update Button color change


  • the1trujok3r
    Participant

    @the1trujok3r

    I want to change the color of my post update button but I only want to change the bbpress button color not my entire sites css button color.

    I found this:
    #buddypress input[type=”submit”],
    #buddypress input[type=”submit”]:hover {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    }

    #buddypress .standard-form div.submit {
    padding: 0 !important;
    }

    #buddypress .standard-form div.submit input {
    margin-right: 0 !important;
    }

    But that didn’t work…

    I am guessing if I could figure out what button buddypress is using to color that button that way or if there is a css override for the Post Update button on the activity page of Buddypress what would be the most idea thing for me.

    Like here on this page the submit button is yellow with white text…if I could figure out a way to color the background of that “post update” button then I could maybe use that…I dunno I’m a css dummy and just fumble my way through guessing at stuff.

    Any help would be much appreciated.

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

  • the1trujok3r
    Participant

    @the1trujok3r

    Anyone have any ideas on how to fix this?


    the1trujok3r
    Participant

    @the1trujok3r

    Does no one know how to do this?


    oliverrealize
    Participant

    @oliverrealize

    #buddypress form#whats-new-form #aw-whats-new-submit {
        background: transparent;
    }

    The above is what chooses the color of the button. Just replace transparent with a hex. i.e. #000000 for black.

    You can also limit it to just the activity page with the activity pages class which is .activity:

    .activity #buddypress form#whats-new-form #aw-whats-new-submit {
        background: transparent;
    }

    I’d be careful with the .activity class, it’s a really vague class so other plugins, themes may use it.

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