PDA

View Full Version : Custom user title text block color.


SPEEDKILLZ
07-02-2015, 03:34 AM
Anyone know where this is located? I need to change the color of the text block. It is there and turns white only when you click on it. If you don't click on it you cannot tell it's there.

MarkFL
07-02-2015, 03:44 AM
Go to the Style Variable Editor, and under "Forms" look for "input_border"...what do you have there?

SPEEDKILLZ
07-02-2015, 03:51 AM
Go to the Style Variable Editor, and under "Forms" look for "input_border"...what do you have there?

Showing #dddddd which is the same as the bg color. I tried to change it to #fff but it didn't change the text box.

MarkFL
07-02-2015, 03:58 AM
I am assuming you want the border to show up, so try giving it the default color:

#6B91AB

SPEEDKILLZ
07-02-2015, 04:02 AM
No change. Could be hard coded maybe?

MarkFL
07-02-2015, 04:07 AM
If you are using a custom skin, there may be a CSS class selector at work here.

Try adding the following to your "additional.css" template:

#tb_customtext {
border: 1px solid #6b91ab !important;
}

SPEEDKILLZ
07-02-2015, 04:11 AM
If you are using a custom skin, there may be a CSS class selector at work here.

Try adding the following to your "additional.css" template:

#tb_customtext {
border: 1px solid #6b91ab !important;
}

Great that worked. Not sure why i couldn't find where it was edited. Oh well thank you once again buddy.

MarkFL
07-02-2015, 04:13 AM
Editing the class selector that was affecting it before may have had an undesirable effect in other places, whereas the selector I posted will affect that element only. :D