x

how do i change the font colour on a survey form (including buttons in form)

How do i change the font colour on a survey form, i also want  to know how to change the colour of the submit button?  

Website link:

https://shakespearean-times-jtchs.weebly.com

*The survey is at the bottom of the home page*

i would like all of this to be same white colour of all the pages

Thanks, plzhelpme

1,871 Views
Message 1 of 8
Report Inappropriate Content
7 REPLIES 7

It looks like section with your form and the submit button itself are already white, @plzhelpme. Did you make changes already?

1,850 Views
Message 9 of 8
Report Inappropriate Content

I just updated my website to the old layout, so maybe you can find a solution for changing the form Font and buttons to white

1,847 Views
Message 9 of 8
Report Inappropriate Content

Ok, try this in the Footer Code field for that page on the pages tab, or in an embed code element underneath the form:

<style>
    #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .form-select, .wsite-form-label .wsite-form-fields-required-label
    {
        color: #fff !important;
    }
    span.form-required
    {
        color: #ff2825 !important;
    }
    .wsite-form-input, .wsite-search-element-input, .form-select, .wsite-form-field select, .wsite-com-product-option-groups select, .wsite-form-field input[type='radio'], .wsite-form-field input[type='checkbox']
    {
        border: 1px solid #fff !important;
    }
    .wsite-button .wsite-button-inner
    {
        background: #fff !important;
    }
</style>

It will fix those on the live site.

1,845 Views
Message 9 of 8
Report Inappropriate Content

Thank you So much! All the buttons and questions in the form changed to white.

The only problem is that the field that say "*indictaed fields required" is still black, is there somthing i have to change to make that text white?

1,841 Views
Message 9 of 8
Report Inappropriate Content

Try this code instead, I made a slight tweak:

<style>
    #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .form-select, .wsite-form-label .wsite-form-fields-required-label, .wsite-form-label
    {
        color: #fff !important;
    }
    span.form-required
    {
        color: #ff2825 !important;
    }
    .wsite-form-input, .wsite-search-element-input, .form-select, .wsite-form-field select, .wsite-com-product-option-groups select, .wsite-form-field input[type='radio'], .wsite-form-field input[type='checkbox']
    {
        border: 1px solid #fff !important;
    }
    .wsite-button .wsite-button-inner
    {
        background: #fff !important;
    }
</style>

1,839 Views
Message 9 of 8
Report Inappropriate Content

Everything is fixed! Thankyou So much!!!!  Smiley Happy

Tags (1)
1,822 Views
Message 9 of 8
Report Inappropriate Content
Square

BJ is the best! Heart

1,820 Views
Message 9 of 8
Report Inappropriate Content
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.