MyBB Community Forums

Full Version: Edit error message word in register page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to edit the word colour in the register page,
For example :
This word :
Please correct the following errors before continuing:
You have entered an email address that is already in use by another member. Please enter a different email address.
How can I edit this word colour?
Thanks
in global.css find .validation_error and and change the color of your choice....

.validation_error {
......
color: #F30;
......
}
(2013-09-12, 11:12 AM)mmadhankumar Wrote: [ -> ]in global.css find .validation_error and and change the color of your choice....

.validation_error {
......
color: #F30;
......
}

Its showing #f30 . How can I change it to Black? , I tried hex colour codes but not working
(2013-09-13, 05:02 AM)jylee1997123 Wrote: [ -> ]Its showing #f30 . How can I change it to Black? , I tried hex colour codes but not working

change it to - color: #000000;
(2013-09-13, 11:03 AM)mmadhankumar Wrote: [ -> ]
(2013-09-13, 05:02 AM)jylee1997123 Wrote: [ -> ]Its showing #f30 . How can I change it to Black? , I tried hex colour codes but not working

change it to - color: #000000;

Yea. I used That one. not working Huh

Anyone? Sad
Anyone Help? Sad
Look for div.error in your global.css stylesheet. Go to ACP>Templates & Styles>Themes>YOUR THEME>Global.css>Simple Mode

Change the color hex code or add a color in the color field.
Thanks ! Solved