How to move CTA on image with text overlay simplify theme

Hi , I’m trying to figure out how to move my CTA button in the image with text overlay section.

the button is in the center of the image and I’m hoping to get it at the bottom.

my URL is

www.plushlocks.com

@Meggyhay89

sorry for that issue

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
#shopify-section-1640680770bd4efb81 .hero__inner {
    vertical-align: bottom;
    padding: 30px 0;
}

@Meggyhay89

Please add the following CSS to your assets/theme.css bottom of the file.

#shopify-section-1640680770bd4efb81 .hero__inner {
    vertical-align: bottom !important;
    padding: 30px 0 !important;
}

Thanks!

That’s not a good idea to use section ID because when they will remove and add that section again (for some reason), the update will be lost. I don’t think that the OP is technical enough to update the section ID.

Thank you for the quick response this has not worked unfortunately.

I’ve tried it twice and it’s still in the center of the images .

@Meggyhay89

your missing elment before this code please add

see missing

can you please add this } before code

@Meggyhay89

Ketan Kumar is correct please add an end bracket in your code.

Thanks!