Change "view full details" button location

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

Hi @nondualreality

Please go to your Online store > Themes > Edit code > open section-featured-product.css file, change this value to -60px

![Screenshot 2024-01-29 at 15.16.05.png|1110x419](upload://uwmYgpRQbioDmMbOSanQfw1GSFL.png)

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,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. 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