I would like to align the text in this banner. Currently, it is centered, and I would like it to be at the bottom. Additionally, I would appreciate the ability to reduce the text size. I’ve seen similar threads, but the solutions provided didn’t work.
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:
div#Banner-template--20346983416148__image_banner_mjpDRG .banner__box {
align-self: flex-end;
}
@media only screen and (min-width: 749px){
div#Banner-template--20346983416148__image_banner_mjpDRG .banner__box {
padding-bottom: 0px;
}
}
For the text size. What size you have in mind? It would be same size on the desktop and mobile? And which text you like to reduce? the titles or the subtitle? Please, clarify and specifiy. Thanks!