• Resolved jannnnnneke

    (@jannnnnneke)


    Hi! Love the plugin, but is it possible to remove or edit the placeholder text? Now it’s exactly the same as the title, a little bit unnecessary if you ask me.

    Thanks a lot!!

    Jannnnnneke

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jannnnnneke

    (@jannnnnneke)

    I know you can do something with the css code and add ::placeholder, but I cant get the exact code. Thanks!

    Plugin Author Jeff Starr

    (@specialk)

    I’m not sure but something like this should work:

    ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      color: transparent;
    }
    ::-moz-placeholder { /* Firefox 19+ */
      color: transparent;
    }
    :-ms-input-placeholder { /* IE 10+ */
      color: transparent;
    }
    :-moz-placeholder { /* Firefox 18- */
      color: transparent;
    }

    Basically just changes the color of the placeholder text to transparent so it is not visible. Source: https://css-tricks.com/almanac/selectors/p/placeholder/

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

The topic ‘Remove or edit placeholder text’ is closed to new replies.