XF 1.2 How to change color of search space

I copied and pasted the codes in the extra css but it didnt work. :(

I just want to change the color of the "search..."

Try the following.

Code:
#QuickSearch .textCtrl::-webkit-input-placeholder {
  color: green;
}


#QuickSearch .textCtrl:-moz-placeholder { /* Firefox 18- */
  color: green;  
}

#QuickSearch .textCtrl::-moz-placeholder {  /* Firefox 19+ */
  color: green;  
}


#QuickSearch .textCtrl:-ms-input-placeholder {  
  color: green;  
}
 
Try the following.

Code:
#QuickSearch .textCtrl::-webkit-input-placeholder {
  color: green;
}


#QuickSearch .textCtrl:-moz-placeholder { /* Firefox 18- */
  color: green; 
}

#QuickSearch .textCtrl::-moz-placeholder {  /* Firefox 19+ */
  color: green; 
}


#QuickSearch .textCtrl:-ms-input-placeholder { 
  color: green; 
}
worked. thanks
 
Top Bottom