Hi there!
To change your button colors you can create a custom class in your .css.
Try putting the following code into the assets/component-image-with-text.css file.
.image-with-text__content .image-with-text__text+.button {
background-color: #0c91c7;
color: #fff;
}
.image-with-text__content .image-with-text__text+.button:after {
display: none; /*this will hide the border around the button if you want*/
}
This will change the button color and text color of all the ‘Shop now’ and ‘Learn more’ buttons.
Replace ‘red’ and ‘black’ with the background and text colors you want for the button :). You can use the hex code of specific colors here to get it exactly how you want!