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
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
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
Hey @audreyping
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Click on three dots then after click on edit code and find section-image-banner.css file.
Please add this css code in section-image-banner.css file.
.slideshow__text .banner__buttons a.button.button--primary {
background: #fff;
color: #000;
}
thanks, it works. Is it possible to change the button’s border color?
Yes update previous code with this one
.banner__buttons .button.button--primary{
background: #fff !important;
color: #000 !important;
border: solid 1px #000;
}