Hi,
im looking to change the shop now button color to white background black border
My site is https://luxurymrkt.com
Hi,
im looking to change the shop now button color to white background black border
My site is https://luxurymrkt.com
Add this CSS, so that you don’t lose the hover tint effect,
div#shopify-section-template--15648732545205__rich-text a.btn {
background: var(--colorBtnPrimaryDark);
color: #1a1a1a;
border-color: #1a1a1a;
}
div#shopify-section-template--15648732545205__rich-text a.btn:hover {
background: var(--colorBtnPrimaryDark);
transition-delay: 0.25s;
}
You can add it to themes.css file in Themes > Action > Edit Code
or use this app of ours to add custom css to any theme - https://apps.shopify.com/custom-css-plus
yes, please try this code
#shopify-section-template--15693212549301__1655737516587c7b13 a.btn {
background: #fff;
color: #000;
border-color: #000;
}
Hello @Luxurymrkt
Go through this solution…
Go to the Online Store-> Theme->Edit code->Assets->theme.css → Add code at the bottom.
div#shopify-section-template–15648732545205__rich-text a.btn {
background: #fff !important;
color: #000 !important;
border-color: #000 !important;
}