PDA

View Full Version : Text boxes



ZirMc
01-06-2010, 09:28 PM
You really need to fix the text boxes, as they change background on focus, but not font color. Please change the font color from black to something readable when focusing as well ;)

You might want to consider adding a "constant" background, and just changing the border color on focus, gives the same effect (you see where you are typing).

Admin
01-07-2010, 07:00 PM
I'm trying to change a few bits all over the place but where vb4 is brand new it's being a little tricky to change certain colors etc. The text color when typing in a quick reply new post etc is now black untill you submit then turns white the same as the rest!

ZirMc
01-07-2010, 10:05 PM
Try firebug for firefox, makes it easy to change it ;)

For instance, changing to the text to a readable color in quick reply would just mean to add:

color:#EEE;

To .editor_textbox textarea, .editor_textbox iframe in one of the template CSS files. Also, to get it active while focusing you have to change:

.formcontrols .blockrow .editor_textbox textarea:focus {
background-color:#25292C;
color:#EEEEEE;
}
to:

.formcontrols .blockrow .editor_textbox textarea:focus {
background-color:#25292C;
color:#EEEEEE !important;
}

Can't really say which files to edit, I don't know vB, but I am sure there aren't that many CSS files to each theme ;)

ZirMc
01-08-2010, 06:36 PM
Most editboxes should have a whitish font color now and be readable. Give a shout if anyone still is hard to make out.