• Resolved brianharper

    (@brianharper)


    Hello,

    I am trying to style the text on the subscription form on this page: https://artaxis.org/. I’m not having any luck, with the exception of the CSS I added to change the email text field.

    Here’s what worked for the email field, but I can’t get anything to work for the name or captcha fields.

    .es_txt_email {
    background-color: #d8d8d8;
    }

    I’d like to be able to change the background color and text color of all three fields on the subscription form.

    I also can’t get the “required” checkbox to work in the settings of the form. It’s like it’s greyed out or something.

    Any help is much appreciated!

    Thank you
    Brian

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor Shubhanshu Kandani

    (@shubhanshukandani)

    Hi there,

    Thanks for contacting us! We’re happy to support you.

    We request you to check the checkbox-related issue in the latest version (5.4.19).

    It appears that color controls aren’t working correctly for form fields when styling the form. You can use the following custom CSS for now.

    Also, we will fix the DND issue in our next release.

    .es_subscription_form .gjs-row input[name="esfpx_name"] {
        color: #000;
        background-color: #fff;
    }
    .es_subscription_form .gjs-row input[name="esfpx_email"] {
        color: #000;
        background-color: #fff;
    }
    .es_subscription_form .gjs-row input[name="esfpx_es_captcha"] {
        color: #000;
        background-color: #fff;
    }

    Let me know how it goes on your end.

    Waiting for your confirmation.

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘Styling subscribe form and “required” checkbox not working’ is closed to new replies.