Hello, I need help please.
- There is a random blank space in my product page between the size picker and the size chart pop up (image attached) I would like to remove that space please.
- Is it possible to make the “SIZE CHART” pop up smaller? it is too wide.
- I don’t know whats happening but in my theme i have a section “related products” but its not showing on the preview. why is this?
Thank you very much!!
My website url is: jellydropsnail.com
password: lemonsherbet
1 Like
Hi @dnnlucia
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:
.tpo_option-set-wrapper.tpo_has-option-set {
display: none !important;
}
modal-opener.product-popup-modal__opener.quick-add-hidden {
margin: 0 !important;
}
@media screen and (min-width: 750px) {
modal-dialog#PopupModal-popup_dybFJy .product-popup-modal__content {
width: 40%;
}
}
And for the 3rd problem. Try to clear cache and restart/refresh your admin page.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like