This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

placeholder input text style

Home Forums Product Support Forums Ajax Search Pro for WordPress Support placeholder input text style

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #7352
    evanshi21evanshi21
    Participant

    i am trying to change the font style from placeholder in search input area however i cant.

    i already change all font style in theme settings and also follow the instructions from image attached but still style do not change

    #7354
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    For some reason the font was not rendering, but the CSS was ok. I’m going to investigate this further for the next release.

    Until then I’ve added the font family imports directly to the plugin header, now it should load. Make sure you completely clear your cache to see it in effect.

    #7356
    evanshi21evanshi21
    Participant

    on your pc the font style change? i still dont see any change on mine

    i already clean cache

    #7357
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Yes, it’s because you had media query strings disabled in W3TC, I have enabled it so now when you click on “Update Media Query” string, the CSS modifications will appear faster, it’s a great option:

    This option: http://i.imgur.com/U1Ns12o.png
    How to clear it: http://i.imgur.com/7gtJIuA.png

    #7358
    evanshi21evanshi21
    Participant

    ok great, one last thing

    may you tell me exactly where you add the code for remove the bold font

    #7389
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Just modify your current custom CSS, which is this (what I can see in the browser tools):

    [html]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;
    }[/html]

    to this:

    [html]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;
    }[/html]

    The only difference is the font-weight line.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘placeholder input text style’ is closed to new replies.