Text Fields

Posted in: Newspaper
Post count: 11

The border around text fields is barely visible, so it’s difficult to see the text fields. I have been using custom CSS to add borders individually for each plugin, but it’s getting difficult. For example, I can’t get it to work for the Buddypress form.

Is it possible to add darker borders for all text fields across the site? Thanks!

Post count: 6600

Hi,

Please use this custom css in theme panel > custom css filed to change the background color and border thickness/color to all text filed: http://screencast.com/t/2ipHrLygr

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
background-color: yellow !important;
border: 3px solid #000000 !important;
}

Thanks

Post count: 11

Thanks for the response. It doesn’t seem to work on any of the Buddypress forms though.

http://goo.gl/5fAMzb

Post count: 6600

Hi,

Please use this css to customize buddypress form fields also: http://screencast.com/t/K8VxqO5B3

#buddypress .standard-form input[type="text"], #buddypress .standard-form input[type="password"] {
background-color: yellow !important;
border: 3px solid #000000 !important;
}

Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.