Could someone assist me with this matter?
I’m attempting to create a text overlay on the images as shown in the screenshot below. Presently, the text appears beneath the image, but my goal is to have the text overlay onto the image instead.
My store address is: https://sk8ology23.myshopify.com/
The password is: uskian
I am using Refresh theme
1 Like
Hi @technase
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.media.media--transparent.media--adapt img {
position: relative;
display: inline-block;
width: 100%;
}
.multicolumn-card__info {
position: absolute;
top: 70%;
}
.media.media--transparent.media--adapt {
padding-bottom: 0px !important;
}
@media only screen and (max-width: 500px){
.multicolumn-card__info {
position: absolute;
top: 60%;
}
}
Result:
I hope it help.
"
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
"
1 Like
Hey,
That’s perfect - thank you so much for that.
can you also do the same for the section right above the footer. that’s a blog section.