Where To Edit Colours On Buttons And Fade In Backdrops - Question | JoomShaper

Where To Edit Colours On Buttons And Fade In Backdrops

Hayden Cyr

Hayden Cyr

Helix Framework 3 years ago

main buttons and the floating "wrap it", sign it, etc columbs mid page have a gradient background that I would like to change and cannot find the specific controls for this. Can you please let me know where to change this or what the custom code would be for me to change? Thank you.

https://www.m2graphix.ca/

0
3 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #4401

Hi, Use this custom css

#sp-page-builder .service-widget:after, #sp-page-builder .service-widget2:after{
  background-image:none !important;
}

In Extensions>Template> Template Options > Custom Code > Custom CSS please add this Thanks

0
Hayden Cyr
Hayden Cyr
Accepted Answer
3 years ago #4539

Thank you, what would the code be if I was to change the colours in the gradient instead of removing the background?

I appreciate your help!

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #4583

Hi, You can use this code

#sp-page-builder .service-widget:after, #sp-page-builder .service-widget2:after{
  background-image: linear-gradient(133deg, #e2d6d6 0%, #259c7b 100%) !important;
}

You can change it from here https://prnt.sc/xuu3i7

0