Habitat theme- How to move slideshow text to bottom of image

Hello,

I’m setting up a store with the Habitat theme. The text on the slideshow appears on the top left of the image, and I would like to move it to the bottom left. How can I do this?

Hi! can you provide your store link?

@Regie_1 Store link is oldtownprintgallery.com and the password to enter is OTEstore

.slideshow__slide-inner{

align-items: flex-end;
}
  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.

@Regie_1 There is no base.css section in the assets folder. Is there somewhere else this can be pasted?

try to paste it on the theme. liquid

inside the theme.liquid file

find this

{% endstyle %}

paste the code above it so it will look like this

.slideshow__slide-inner{

align-items: flex-end;
}

{% endstyle %}

@Regie_1 I added this to the slideshow.css section of assets and it solved the problem. Thanks so much!