PiTech Template - Button Color - Question | JoomShaper

PiTech Template - Button Color

Dayle Lunn

Dayle Lunn

Template 1 year ago

Hi,

I am using the PiTech template - but I can't find a way to edit the animated button on the page. I need to change the color from Blue - how can I do this please?

I tried to use the below code, but this doesn't do what I want it to do.

.pitech-slider .sp-slider-btn-text{ background-color: #000 !important; }

It changes the whole button color, but the animation effect is gone (you can briefly see the animation when you hover over the button in the background and this is still blue....

Thanks

0
3 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #157371

Hi Dayle,

You're pretty close, that bg blue color (#0f4ae3) is for :before Here is dark grey version:

.pitech-slider .sp-slider-btn-text::before {
 background: linear-gradient(255.48deg, rgba(255, 255, 255, 0.2) 4.07%, rgba(255, 255, 255, 0) 103.07%), #000; 
 }

I think grey fits better than blue ;p

0
Dayle Lunn
Dayle Lunn
Accepted Answer
1 year ago #157374

Perfect - thank you

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #157381

You're welcome. Website looks very nice.

Please mark topic as solved.

0