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
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
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.
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;
}
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!