Dawn theme banner text needs to go down

I would like to figure out how to drop the text in the banner further to the bottom. I can select bottom centre but on mobile it drops it right in front of the image so its not easy to read. Tried to edit code to no avail.

Hey @fineedge

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @fineedge

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.banner__content.banner__content--bottom-center.page-width {
    align-items: end !important;
}
.banner__box.content-container.content-container--full-width-mobile.color-background-1 {
    padding-bottom: 12px !important;
}

Result

Best,

DaisyVo