XenForo "Create Thread" (Thread Title color)

Cryptaline

Active member
Licensed customer
Can not find already existed property to change the color of the thread title tip.
Will apreciate any help :coffee:
social-top.webp
 
Nope, smth wrong :coffee:
I ve already tried this one.
I mean i ve tried all existed properties, i think i missing some css properties need to figure it out.
 
That works for me, I tested it on my forum. Are you overriding it in your extra.css or something?

The following works in extra.css, but only in Chrome and FF I think, which isn't ideal as it would still be illegible to IE users.

Code:
#ctrl_title_thread_create::-webkit-input-placeholder {
  color: red;
}
 
#ctrl_title_thread_create:-moz-placeholder { 
  color: red; 
}

CSS Tricks
 
Back
Top Bottom