MyBB Community Forums

Full Version: Registration page username whited out
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whenever people type in the username bar, this is what happens. How do I fix this?
Is it just the username field that's doing this? It's usually the input.textbox class you'll need to change in global.min.css if it was all/most of the fields on the registration page. Can you post a link to your forum?

Alternatively, you can go into the member_register template and add color: black; to the style attribute for the username input.
(2018-05-13, 07:36 PM)Wires Wrote: [ -> ]Is it just the username field that's doing this? It's usually the input.textbox class you'll need to change in global.min.css if it was all/most of the fields on the registration page. Can you post a link to your forum?

Alternatively, you can go into the member_register template and add color: black; to the style attribute for the username input.

Voidgaming.net is the link
It's not just username, it happens to the other inputs too.

Go to ACP --> Templates & Style --> Select your theme --> Global.css

Find input.textbox (line 556), change color: #fff; to color: #5a5a5a;

Save and do a hard refresh to see changes.
(2018-05-13, 07:53 PM)Wires Wrote: [ -> ]It's not just username, it happens to the other inputs too.

Go to ACP --> Templates & Style --> Select your theme --> Global.css

Find input.textbox (line 556), change color: #fff; to color: #5a5a5a;

Save and do a hard refresh to see changes.

This worked. Thanks!