Editing #buddypress .standard-form input[type="text"]

Posted in: Newspaper
Post count: 79

Hi, I am trying to change the default style for buddypress text and pass input fields,
but I can’t seem to be able to override the default ones

this is what I tried to do:


#buddypress .standard-form input[type="text"], #buddypress .standard-form input[type="password"] {
    display: block!important;
    margin-bottom: 10px!important;
    background-color: yellow!important;
    border:2px dotted #00f!important;

}

but even though I put !important it is still overriden
any ideas how to achieve it?

thanks

Post count: 6600

Hi,

I have tested this css on your site and it should work fine: http://screencast.com/t/PViBiSOg44fI
Please make sure you paste this in the custom css filed in theme panel and save changes, I have added an extra class to help targeting better:

#buddypress .standard-form .register-section input[type="text"], #buddypress .standard-form .register-section input[type="password"] {
display: block!important;
margin-bottom: 10px!important;
background-color: yellow!important;
border:2px dotted #00f!important;
}

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.