How I can align text, button in the slideshow? DAWN theme

Hello guys,

I can’t find how to set these containers below. I wish they were at the bottom. It would be perfect if one slide had the bottom center and the other bottom right.

https://d5ab0f.myshopify.com/

Password: amber

Thanks in advance!

Hi @Atsimataves

Check this one.

  • 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:
@media only screen and (max-width: 749px){
.slideshow__text.banner__box {
    position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) !important;
    
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Wow! It works. :check_mark: Thank you so much! :heart_eyes: