• Resolved tomleek

    (@tomleek)


    Hi,

    I want to change to color of the text because it is white but my blog page is also white.
    i tried in the custom CSS in customizer that you gave earlier but nothing helped.
    How do i change this and where (in customizer custom CSS?)

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @tomleek!

    It looks like your theme has made all inputs white with the following css:

    body.light-v input {
        color: #fff !important;
    }

    It’s using the !important modifier at the end of the style, which would prevent any other CSS from overriding it. While not typically recommended, you will also have to use the !important modifier in order to change the color. Try this:

    
    body.light-v .yikes-easy-mc-form input {
        color: gray !important;
    }
    

    You can change “gray” to whatever color or hex code you’d like to use.

    This should also be placed under Appearance > Customize > Additional CSS.

    Hope this helps. Let me know if it does!

    Thread Starter tomleek

    (@tomleek)

    Thank you for the amazing and quick support!
    It worked like a charm!
    Have a great day

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change text fill-in form’ is closed to new replies.