Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1347672

    Hi Team
    I use contact form 7 built a form,how can i change the color with font in form?
    I want to change the font color of the input to blue.

    #1347704

    Hey zemanchiu,

    Please try the following in Quick CSS under Enfold->General Styling:

    #searchform_element input {
      color: blue; 
    }

    Best regards,
    Rikard

    #1347763

    Hi Rikard
    Thank you for your reply, but I didn’t mean to change search to blue,

    I want to change the text entered in the form into blue, thank you.

    #1347767

    Hi,

    Please try this CSS instead:

    #searchform_element input::-webkit-input-placeholder { 
      color: pink;
    }
    #searchform_element input::-moz-placeholder { 
      color: pink;
    }
    #searchform_element input:-ms-input-placeholder { 
      color: pink;
    }
    #searchform_element input:-moz-placeholder { 
      color: pink;
    }

    Best regards,
    Rikard

    #1347769

    Dear Rikard
    Tks for you help!
    it is working.
    and how can i change the font color of the “PART NUMBER” “MANUFACTURER” and “QUANTITY”?

    #1347818

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #RFQ-responsive-form input::-webkit-input-placeholder,
    #RFQ-responsive-form textarea::-webkit-input-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input::-moz-placeholder,
    #RFQ-responsive-form textarea::-moz-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input:-ms-input-placeholder,
    #RFQ-responsive-form textarea:-ms-input-placeholder{ 
      color: blue;
    }
    #RFQ-responsive-form input:-moz-placeholder,
    #RFQ-responsive-form textarea:-moz-placeholder{ 
      color: blue;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

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