I am having issues changing the button background colour on the form at the top of this page.
https://wrpartners.co.uk/ppc-services-landing-page-template
I have added this custom CSS;
.sqs-background-enabled.sqs-block-form .sqs-editable-button.sqs-button-element--primary, .site-wrapper .sqs-background-enabled.sqs-block-form .sqs-editable-button {
background: #41986c; important!;
}
However, I think the below CSS is stopping it from working.
.sqs-button-element--primary {
background-color: #000000;
color: white; important!;
}
When I view and test in Chrome developer tools and remove the important!; from the above code it does work. However I don't have access to the CSS files to remove that. Is there any way I can achieve the colour change for the form button withinin custom css?