I’m trying to make all the text on the image banner look like the bright white text of the header that says “the story begins” but the problem is that the text below it has lower opacity and because the image behind it is a bit dim it turns the text into light gray instead of white.
It worked! However how do I make it so that this will now be the default or any new banner blocks I make? For example I duplicated that same block and it gave me that lower opacity text again.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.banner__text.rte.body {
color: white !important;
}