We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Help to change the button's background color & text of slideshow (dawn theme)

Solved

Help to change the button's background color & text of slideshow (dawn theme)

audreyping
Shopify Partner
4 0 2

I need help with changing the slideshow's button background color to be white and the text to be black

https://plains-and-prints-ph-uat.myshopify.com/

pwd: plainsandprints

audreyping_0-1751278509343.png

 

Accepted Solution (1)

Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @audreyping 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a.button.button--primary {
    background: white !important;
    color: black !important;
}
</style>

RESULT:

Moeed_0-1751279050365.png

 

If I managed to help then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 5 (5)

Guleria
Shopify Partner
4299 825 1189

Hello @audreyping ,

 

Edit base.css under assets, scroll down to bottom and add this code

.banner__buttons  .button.button--primary {
    background-color: #fff;
    color: #000;
}

 

Regards
Guleria

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
audreyping
Shopify Partner
4 0 2

thanks, it works. Is it possible to change the button's border color?

Guleria
Shopify Partner
4299 825 1189

Yes update previous code with this one

.banner__buttons  .button.button--primary{
    background: #fff !important;
    color: #000 !important;
    border: solid 1px #000;
}
- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.

Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @audreyping 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a.button.button--primary {
    background: white !important;
    color: black !important;
}
</style>

RESULT:

Moeed_0-1751279050365.png

 

If I managed to help then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


Dev_Inflame
Shopify Partner
39 0 0

@audreyping ,

Click on three dots then after click on edit code and find section-image-banner.css file.

Dev_Inflame_0-1751279218115.png

 


Please add this css code in section-image-banner.css file.

.slideshow__text .banner__buttons a.button.button--primary {
    background: #fff;
    color: #000;
}