Change color and position of text on homepage (Ella Theme)

Hi, Does anyone know how to change the color of text(white to black)? Is it possible the move the text and button(on cat image) to the rightside? Thanks.

website: lepeto.myshopify.com

password: brulol

1 Like

@bethchan

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.image-with-text-overlay__content .title, .image-with-text-overlay__content .content{
color: #1e1e1e !important;
}
.image-with-text-overlay__content{
text-align: right !important;
}

Hope this helps.

Thanks!

Thank you so much.

Hi,dmwwebartisan

I want to move it to the bottom and I add this code, but it doesn’t work. Would you fix it?

.image-with-text-overlay__content{

text-align: bottom !important;

}

@dmwwebartisan

@bethchan

The above code won’t work. Try this one.

.image-with-text-overlay__content{
top: unset !important;
bottom: 15px !important;
}

Hope this works.

Thanks!

@dmwwebartisan Thank you so much!