XenForo "Create Thread" (Thread Title color)

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
 
Top Bottom