Topic summary
A user seeks to change the color of a specific button on their Shopify store without affecting other buttons. They provided:
- A screenshot showing the button in question
- Their store URL (makerlab-electronics-ph.myshopify.com)
Solution provided:
A CSS code snippet targeting the specific button by its unique ID:
- Uses
#Banner-template--16019678691519__06493815-042b-4640-b209-725bde7878a3 .banner__buttons a - Applies
background-color: #your-color !important - User needs to replace
#your-colorwith their desired color code
The solution isolates this button through its unique identifier, preventing changes from affecting other buttons on the site. The discussion appears resolved with a working CSS customization.
url:https://makerlab-electronics-ph.myshopify.com/
pass: saboten
You can do that by using this code
#Banner-template--16019678691519__06493815-042b-4640-b209-725bde78783a .banner__buttons a {
background-color: #your-color !important;
}
Replace #your-color with your code
