Colours not matching

Hi
I have an issue with the colours on my page: www.yorkshireboilers.co.uk

Basically, the CTA button that says 'Get a Free Quotation Here' is not the same colour as the theme colours as used in the 4 green buttons below my main image. I have tried to change the colours but they do not match. 

Thanks

Myles 

Comments

  • Hi,

    Buttons in the content are default Visual Composer buttons and uses css gradient. You can have it on call to action button.

    Please go to Theme Options > Custom CSS and paste below code
    .action_button {
        background-color: #6dab3c !important;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.01) 100%);
    }
    Thanks!
  • Hi,

    Many thanks for your quick reply. 

    My button on my contact form 7 is also the old green colour, should i sort this by CSS for the contact form or is this a theme setting? 

    Thanks

    Myles
  • Hi,

    If you want CF7 buttons to look the same as VC buttons u need to use below code
    .wpcf7-form-control.wpcf7-submit {
      background-color: #6dab3c !important;
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
      border-color: #6dab3c !important;
      color: #ffffff !important;
    }
    Thanks!
  • Hi

    Excellent. Many thanks for your help, it is much appreciated. 

    Myles 
Sign In or Register to comment.