I need help in changing the text color of the ‘Image with text’ section without changing the color of text of the rest of the site. My site is https://shopalarma.com/
Hi @Amaan3
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
#ImageWithText--template--16982905880888__image-with-text {
--color-foreground: 255,255,255;
--color-button-text: 0,0,0;
}
you can check the RGB code on this link: https://www.w3schools.com/colors/colors_picker.asp
To choose the color you want.