Title: CSS changes
Last modified: November 8, 2017

---

# CSS changes

 *  Resolved [crowds90](https://wordpress.org/support/users/crowds90/)
 * (@crowds90)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/css-changes-16/)
 * Hi,
 * Wondering if you could help me with a few css changes.
 * 1) What is the css to change the font size smaller of “Search here..” for mobile
   screens?
 * 2) I have space between my search bar and the search dropdown. What is the css
   to move the dropdown right up against the search bar?
 * 3) What is the css to change the text color inside the dropdown?
 * Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [wpdreams](https://wordpress.org/support/users/wpdreams/)
 * (@wpdreams)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/css-changes-16/#post-9685934)
 * Hi!
 * 1. The font size on IOS devices is fixed to a 16px, because there is no other
   way to get around the form ‘zoom’ issue that IOS devices do. Aside from that,
   this custom CSS should do the trick:
 *     ```
       .probox .proinput input,
       .probox .proinput input::-webkit-input-placeholder,
       .probox .proinput input::-moz-placeholder,
       .probox .proinput input:-ms-input-placeholder,
       .probox .proinput input:-moz-placeholder {
           font-size: 12px !important;
       }
       ```
   
 * 2. Do you mean the results? Try something like this:
 *     ```
       .wpdreams_asl_results {
           margin-top: -12px !important;
       }
       ```
   
 * The number might have to be adjusted.
 * 3. Which drop-down are you reffering to, the results or the settings?
 *  Thread Starter [crowds90](https://wordpress.org/support/users/crowds90/)
 * (@crowds90)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/css-changes-16/#post-9686933)
 * Awesome! Thank you.
 * For number 3. I am referring to the results text color if you could help me out.
   Thanks again
 *  Plugin Author [wpdreams](https://wordpress.org/support/users/wpdreams/)
 * (@wpdreams)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/css-changes-16/#post-9688252)
 * Hi,
 * Sure! This one is for the header title links color:
 *     ```
       .asl_content h3 a {
           color: red !important;
       }
       ```
   
 * ..the content description:
 *     ```
       .asl_desc {
           color: blue !important;
       }
       ```
   
 * These should do the trick 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘CSS changes’ is closed to new replies.

 * ![](https://ps.w.org/ajax-search-lite/assets/icon-256x256.png?rev=3192672)
 * [Ajax Search Lite - Live Search & Filter](https://wordpress.org/plugins/ajax-search-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ajax-search-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ajax-search-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/ajax-search-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ajax-search-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ajax-search-lite/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [wpdreams](https://wordpress.org/support/users/wpdreams/)
 * Last activity: [8 years, 6 months ago](https://wordpress.org/support/topic/css-changes-16/#post-9688252)
 * Status: resolved