I would like for there to be a space between the “view full details” and the photo.
Please help!
www.kidkartz.com
Thank you!
1 Like
Please go to your Online store > Themes > Edit code > open section-featured-product.css file, change this value to -60px
From this
.featured-product .product__view-details{
font-size: 2rem;
width: 100%;
position: absolute;
bottom: -40px;
right: -32%;
text-align: right;
}
To this
.featured-product .product__view-details{
font-size: 2rem;
width: 100%;
position: absolute;
bottom: -60px;
right: -32%;
text-align: right;
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.featured-product .product__view-details {
position: initial!important;
text-align: center!important
}
Thank you so much it worked!
1 Like
Very welcome