Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
So I learned liquid, html, css and js to customize my store. I created a landing page (made out of several sections) where I embeded a new product template for a product with the intention to make a more visually-juicy landing page, but somehow, the thumbnail slider buttons are not in the proper position. I've been trying to find with chrome dev tools what rule to change on css but can't just get it right. I will attach a screenshot and the link to the landing is this one (you have to scroll till you find the product template): Link to the landing page
Does anybody have some idea of what to change to fix this? Also, please feel free to throw some feedback on the landing page design, UI and functionality!
Hi @Jose13,
I checked and did you change it? https://i.imgur.com/5xaxhTi.png
Please send the product link, I will check it.
It is ok on the default product template, but not on the new one. The specific product is the one linked on the first post, here's that link: https://coolpebbles.com/products/lillipot This is the product displaying the problem.
Please follow these steps:
- Step 1: Go to Online store > Themes > Actions > Edit code.
- Step 2: Go to Assets > theme.scss.liquid and paste this at the bottom of the file:
.thumbnails-wrapper .thumbnails-slider__prev{
position: absolute;
z-index: 99;
top: 54%;
left: -40px;
transform: translateY(-50%);
}
.thumbnails-wrapper .thumbnails-slider__next{
position: absolute;
z-index: 99;
top: 54%;
right: -40px;
transform: translateY(-50%);
}
Hope it helps!