How can I modify the button text and border color in Sense Theme slideshow?

Hello! How can I change the text and border of the button on slideshow? I use Sense Theme.

Thank you!

Hi @AlysaPopa

Could you please share URL and your store password? So that we can help you.
Thank you.

Hello @AlysaPopa

It’s GemPages support team and glad to support you today.

1 - Change text

Go to Online Store β†’ Theme β†’ Customize

Click on Slideshow and change the text as shown below:

2 - Change Border Button

Go to Online Store β†’ Theme β†’ Edit code

Open file: assets/base.css

added new code:

slideshow-component .button:after{
   border: 1px solid red;
}

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

1 Like

And how can I change the color of the text?

And how can I change the color of the text?

@AlysaPopa

Please use the code below and replace the name or color code you want:

slideshow-component .button{
   color: green;
}
1 Like