Hi,
im looking to change this button color to white with black border on desktop
before and after hover *
my site is https://luxurymrkt.com
Hi,
im looking to change this button color to white with black border on desktop
before and after hover *
my site is https://luxurymrkt.com
Hi @Luxurymrkt ,
You can try this code
@media only screen and (min-width: 768px){
#shopify-section-template--15648732545205__1655737516587c7b13 .btn {
background: #fff;
color: #000;
border: 2px solid #000;
}
}
Hi @Luxurymrkt !
This is PageFly - Advanced Page Builder. I would love to give you some recommendation
Please paste this code at the bottom of theme.css under assets in theme code files
.btn,.rte .btn,.shopify-payment-button .shopify-payment-button__button–unbranded,.spr-container .spr-button,.spr-container .spr-summary-actions a::hover {
background: white !important;
color: black !important;
border: 1px solid black !important;
}
.btn,.rte .btn,.shopify-payment-button .shopify-payment-button__button–unbranded,.spr-container .spr-button,.spr-container .spr-summary-actions a{
background: white !important;
color: black !important;
border: 1px solid black !important;
}
Best Regards;
PageFly
yes, please add this code
#shopify-section-template--15648732545205__1655737516587c7b13 .btn:hover {
background: #000;
color: #fff;
transition: none;
}