MyBB Community Forums

Full Version: How to change the user registration textbox style and font color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there!

The textboxes on my registration form doesn't display the text its contain when the color border changes either into light blue or red.

You have to highlight the text to see it.

I know it's related with the theme. Can someone me how can I change that border style or the text color in that form.

See screenshot:
[Image: PZPeP3D.png]
Please post your forum url
Sure forums.jcplaboratory.org
in the theme's global.css around line 544 (edit through admin panel - in advanced edit mode)
you can change background color or text color for input.textbox

if required, see html color codes
No still does not work.
Go to your admin cp -> Templates & Style
Go to global.css
Change to advanced edtor.
Find: form input.valid

In that tag add
color: black;

That should look like
form input.valid {
	border: 1px solid #0c0;
	background: #ffffff;
	padding: 3px;
	outline: 0;
	font-size: 13px;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
}

Replace it with folowing code:

form input.valid {
	border: 1px solid #0c0;
	background: #ffffff;
	padding: 3px;
	outline: 0;
	font-size: 13px;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	color: black;
}
(2014-11-20, 09:57 AM)Ivan Kerepčić Wrote: [ -> ]Go to your admin cp -> Templates & Style
Go to global.css
Change to advanced edtor.
Find: form input.valid

In that tag add

color: black;

Its worked. thank you. Shy