Support » Plugin: Contact Form Clean and Simple » Change colour of message text?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Jo,

    To do this you will need to make changes in your themes’s style sheet.

    Here is an example of setting the error colour to blue and the success colour to white:

    .control-group.error .control-label, .control-group.error .help-block, .control-group.error .help-inline {
    color: blue !important;
    }
    .control-group.success .control-label, .control-group.success .help-block, .control-group.success .help-inline {
    color: white !important;
    }

    You would need to make the css !important due to the plugin css being loaded second and thus overriding any changes you make further up.

    Put the above code at the bottom of your theme’s style.css and then refresh your page with shift+F5 to force your browser to reload the css.

    Meg

    Thread Starter Joshaw

    (@joshaw)

    Hi Meg,

    Thank you for your reply. Not quite what I meant but I figured out a work around for what I wanted. Appreciate the info on how to change the success and error message though!

    Thanks =)

    Jo

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change colour of message text?’ is closed to new replies.