Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › placeholder input text style › Reply To: placeholder input text style
January 21, 2016 at 2:20 pm
#7389
Hi!
Just modify your current custom CSS, which is this (what I can see in the browser tools):
div[id*='ajaxsearchpro'] input.orig, div[id*='ajaxsearchpro'] input.autocomplete {
margin: 0px !important;
padding: 0px !important;
outline: none !important;
border: none !important;
box-shadow: none !important;
background: transparent !important;
font-family: Lato !important;
color: #000 !important;
font-weight: bold !important;
font-size: 15px !important;
line-height: 17px !important;
}
to this:
div[id*='ajaxsearchpro'] input.orig, div[id*='ajaxsearchpro'] input.autocomplete {
margin: 0px !important;
padding: 0px !important;
outline: none !important;
border: none !important;
box-shadow: none !important;
background: transparent !important;
font-family: Lato !important;
color: #000 !important;
font-weight: normal !important;
font-size: 15px !important;
line-height: 17px !important;
}
The only difference is the font-weight line.
Best,Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)