PDA

View Full Version : Stylevar Help


RGL Griff XV
02-27-2020, 06:53 PM
<a href="https://gyazo.com/258e1199c05056e7eeef4ffa219f69a2" target="_blank">https://gyazo.com/258e1199c05056e7eeef4ffa219f69a2</a>
Which Stylevar is the Thread/post title? I need to change the highlight color (selected)

Edit, The text is white after I type something in and the background is black.
Whenever I begin to type something, it then becomes a white bar and I cannot see what I am typing.

shka
02-28-2020, 12:05 PM
I don't know if I understood your problem correct. You mean:

click in input-box (in your pic the title field of advanced editor, but also every other input field like login data with your demo account, edit and send a pm ) results to white background and white text?

Your aim: other text color?

There is no stylevar for. In template "vbulletin-formcontrols.css" there is only a definition for background
.formcontrols .blockrow input.textbox:focus,
.formcontrols .blockrow textarea:focus {
background: {vb:stylevar input_focus_background};
}

Two solutions:
A. Edit "vbulletin-formcontrols.css" to
.formcontrols .blockrow input.textbox:focus,
.formcontrols .blockrow textarea:focus {
background: {vb:stylevar input_focus_background};
color: #888888;
}

B. Go to template "additional.css" and add
.formcontrols .blockrow input.textbox:focus,
.formcontrols .blockrow textarea:focus {
color: #888888;
}

Change #888888 to a color of your choice.

RGL Griff XV
02-28-2020, 02:00 PM
This worked perfectly, thank you