hi,
i want to change text and button color from Image with text section to #D4AF37
and button text to black
anyone can help?
web: https://v10plus.com/
A user seeks to customize an “Image with text” section in their Shopify store by changing text color to #D4AF37 (gold) and button styling to black text on a gold background.
Solutions Provided:
Two developers offered CSS code snippets to achieve this:
Current Status:
The user confirmed the code works but identified a remaining issue: the button still displays a black outline that needs removal. The discussion appears ongoing as this final styling detail remains unresolved.
hi,
i want to change text and button color from Image with text section to #D4AF37
and button text to black
anyone can help?
web: https://v10plus.com/
Hello There,
.image-with-text__heading.h2 {
color: #d4af37!important;
}
.button.button--primary {
color: black;
background-color: white;
}
Hey @v10plus ,
If it’s only for that section then please use
div#ImageWithText--template--16742541164798__1654589419d5943525 > h2 {
color: #D4AF37 !important;
}
div#ImageWithText--template--16742541164798__1654589419d5943525 > a {
color: black !important;
background-color: #D4AF37 !important;
}
If it’s for all sections like the one you mentioned, then please use
h2.image-with-text__heading.h2 {
color: #D4AF37 !important;
}
a.button.button--primary {
color: black !important;
background-color: #D4AF37 !important;
}
Please paste it in the Custom CSS section in the Theme Customizer → Settings here
hi this one work for me
i change a little bit, btw the button still have black outline. can remove?
.image-with-text__heading.h2 {
color: #d4af37 !important;
}
.button.button–primary {
color: white;
background-color: #d4af37;
}
h2.image-with-text__heading.h2 {
color: #D4AF37 !important;
}
a.button.button--primary {
color: black !important;
background-color: #D4AF37 !important;
}
this also work for me
but the button still have black outline. can remove?