Move text to the bottom of the banner image and change button shape (turbo theme)

Topic summary

A user seeks help moving banner text to the bottom of the image and changing the button from oval to rectangular shape on their Shopify store using the Turbo theme.

Initial Solution Attempt:

  • Another user provides CSS code to add to the styles.css file
  • Code targets .banner.homepage-slideshow .caption positioning and button border-radius
  • This solution does not work for the original poster

Root Cause Identified:

  • The styles.css file is corrupted

Alternative Solution:

  • Instructions provided to edit the theme.liquid file in the Layout folder instead
  • Add CSS code after the <body tag line
  • Use .caption { bottom: -10%; !important; } to reposition text

Resolution:

  • The alternative approach successfully resolves the issue
  • User confirms the solution worked
Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

Hi! I’d like to move the text on my website banner to the bottom of the page and change the button to a rectangle instead of an oval. Ideas?

the-atheneum.com

2 Likes

Hi @micaiahwebb

Please follow the instructions below to obtain the changes you wanted

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the styles.css file
  3. At very end of the code, add the code below
.banner.homepage-slideshow .caption.position-center.js-caption {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner.homepage-slideshow  a.global-button.global-button--primary.first_button {
    border-radius: 0px !important;
}

Result here:

Unfortunately that didn’t work for me! Thank you tho.

.caption {

bottom: 0 !important;

}

Hi @micaiahwebb

You styles.css file is corrupted actually. You can do the following instead

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Layout folder and open the theme.liquid file
  3. Find the line code <body…, then place the code below in the next line.

See image for placement

.caption {
     bottom: -10% !important;
}

This worked - thank you!