• Resolved tim_makingasite

    (@tim_makingasite)


    Hi, I’m using the form maker to make a membership registration form on a website for a university project.
    The background for out website is Black so I would like to use the transparent theme so that the form’s background is black too as the black theme just made the background white.
    How can I edit the CSS of the theme to make all of the form’s text white?

    https://wordpress.org/plugins/form-maker/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor webdorado

    (@webdorado)

    Dear tim_makingasite,

    Could you please give the link to your form page?
    Thank you.

    Thread Starter tim_makingasite

    (@tim_makingasite)

    http://doc.gold.ac.uk/~ma201sa/PLATINUM/?page_id=6

    That is the page with the form on the bottom. Instead of using the transparent form and making the text white we have decided to use the light grey theme.
    We would like to make the submit button red if possible instead of the dark blue that it currently is, is there any way to change that?

    Plugin Contributor webdorado

    (@webdorado)

    Dear tim_makingasite,

    Please add the following code to the CSS of your form’s theme:

    .wdform-label {
    	color: #FFF !important;
    }
    
    .wdform-ch-rad-label {
    	color: #FFF !important;
    }
    
    .mini_label {
    	color: #FFF !important;
    }
    
    .input_active {
    	color: #FFF !important;
    }
    
    .input_deactive {
    	color: #FFF !important;
    	background-color: transparent !important;
    }
    
    input[type="text"] {
    	background: none repeat scroll 0% 0% transparent !important;
    	color: #ffffff !important;
    }

    Thank you.

    Thread Starter tim_makingasite

    (@tim_makingasite)

    Hi, thanks for that.
    The code does what we want it to do but is there any more that I can add in order to make the submit button red so that it matches the theme of the website?

    Regards

    Plugin Contributor webdorado

    (@webdorado)

    Dear tim_makingasite

    Please use the following code:

    .button-submit {
    	background: none repeat scroll 0% 0% #ff0000;
    }

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change text colour to white on Theme 04’ is closed to new replies.