• Resolved denirc

    (@denirc)


    Hello,

    Is it possible to change the ‘Search’ placeholder font in the free version of Responsive menu? Also, how can I remove the unnecessary blank space below Search?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Denirc,

    Placeholder text automatically inherits the custom CSS styles of the input text field.

    However, if you only want to change the placeholder text style and do not want to change the styles of the input text field. You can accomplish this with the ::placeholder pseudo-element.

    The following code will solve your problem regarding placeholder text style:

    /* .responsive-menu-pro-search-box is the class assigned to search field and ::-webkit-input-placeholder is used for chrome/opera/safari browser*/
    .responsive-menu-pro-search-box::-webkit-input-placeholder {
    css-declarations;
    }

    /* for firefox 19+*/
    .responsive-menu-pro-search-box::-moz-placeholder {
    css-declarations;
    }

    /* for IE 10+ */
    .responsive-menu-pro-search-box:-ms-input-placeholder {
    css-declarations;
    }

    /* for firefox 18- */
    .responsive-menu-pro-search-box:-moz-placeholder {
    css-declarations;
    }

    And Auto-height option is available in the Pro version of this plugin. By default, the free version has a viewport height of 100%.

    Please let me know if you need any further assistance.

    Kind regards,
    Varun Kumar

    Thread Starter denirc

    (@denirc)

    Thank you very much, Varun!

    Hi Denirc,

    It is our pleasure to help our valuable users. Thank you for reaching out to us.

    Regards,
    Varun Kumar

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Search font / Blank space’ is closed to new replies.