Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #912752

    Hi, how can I make the font colors in the contact form fields to be white?

    #912805

    its allways better to see the link.
    But do you mean the real inputed text or the place-holder text in the field ?

    tip for placeholder-text:

    ::-webkit-input-placeholder {
      color: pink !important;
    }
    ::-moz-placeholder { 
      color: pink !important;
    }
    :-ms-input-placeholder { 
      color: pink !important;
    }
    :-moz-placeholder { 
      color: pink !important;
    }
    • This reply was modified 6 years, 2 months ago by Guenni007.
    #912806

    Both would be great.

    #912807

    post deleted, sorry, my mistake

    • This reply was modified 6 years, 2 months ago by Milan.
    #912822

    you must replace pink than with #fff :lol

    to change it globaly: it is on Enfold Options Dialog: Main Content secondary font color

    the rest will work with attribute selektor

    #top .main_color input[type="text"], 
    #top .main_color input[type="input"], 
    #top .main_color input[type="password"], 
    #top .main_color input[type="email"], 
    #top .main_color input[type="number"], 
    #top .main_color input[type="url"], 
    #top .main_color input[type="tel"], 
    #top .main_color input[type="search"] 

    depends on the field you like to change

    #912825

    and something important to Firefox
    all placeholders have transparency – to avoid this:

    ::-moz-placeholder {
      opacity: 1 !important;
    }
    #912947

    Hi,

    CSS Tricks that can save lifes! :D

    Best regards,
    Basilis

    #912965

    😇 😂

    #913130

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.