Dawn theme: Image banner text and button position

Hello everyone,

I am using Dawn theme to design my shop and stumbled upon image banner limitations. I can assign text and button position together, like middle center and so on.

But I am trying to achieve that text would be positioned: middle left and button: bottom middle. I tried using chatgpt for custom css, but did not solve it.

Does anyone have any ideas?

@Tautvydas2

Please share Store URL.

You may try CSS like this in this section “Custom CSS” setting:

@media (min-width:750px) {
  .banner__box.content-container {
    max-width: none;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
  
  .banner__buttons {
    position: absolute;
    bottom: 0;
    align-self: center;
  }
}

@Tautvydas2

Please share your store URL, and I’ll be happy to help you.

Thanks!