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
Hi everyone, while scrolling on our product pages, the title, richtext and custom liquid which serves as reviews become sticky which we dont want. Can anyone help us, it is for all our product pages.
Solved! Go to the solution
This is an accepted solution.
You’ll need to check the CSS settings or styles applied to the product page. Look for any position: sticky or similar properties and adjust or remove them to stop the content from sticking.
This is an accepted solution.
- Here is the solution for you @lunalucenteskin
- Please follow these steps:
- Then find the base.css or theme.css file.
- Then add the following code at the end of the file and press 'Save' to save it.
.m-main-product--info .m-product-info--wrapper {
position: relative !important;
top: 0px !important;
}
- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.
If our suggestions are useful, please let us know by giving it a like or marking it as a solution.
Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)
Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page
This is an accepted solution.
Hello @lunalucenteskin, Please follow these steps to add this CSS code:
1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. open "product.css"
6. Add the following code at the end of the file.
Find this below CSS and add new CSS.
.m-main-product--info .m-product-info--wrapper {
position: sticky; /* remove or comment this line of the CSS old CSS */
position: static; /* add this line of the CSS new CSS */
top: 30px;
}
Feel free to reach out if you have any questions or need assistance.
Best regards,
DWS.
This is an accepted solution.
You’ll need to check the CSS settings or styles applied to the product page. Look for any position: sticky or similar properties and adjust or remove them to stop the content from sticking.
This is an accepted solution.
- Here is the solution for you @lunalucenteskin
- Please follow these steps:
- Then find the base.css or theme.css file.
- Then add the following code at the end of the file and press 'Save' to save it.
.m-main-product--info .m-product-info--wrapper {
position: relative !important;
top: 0px !important;
}
- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.
If our suggestions are useful, please let us know by giving it a like or marking it as a solution.
Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)
Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page
This is an accepted solution.
Hello @lunalucenteskin, Please follow these steps to add this CSS code:
1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. open "product.css"
6. Add the following code at the end of the file.
Find this below CSS and add new CSS.
.m-main-product--info .m-product-info--wrapper {
position: sticky; /* remove or comment this line of the CSS old CSS */
position: static; /* add this line of the CSS new CSS */
top: 30px;
}
Feel free to reach out if you have any questions or need assistance.
Best regards,
DWS.
Hi @lunalucenteskin,
Here are the steps you can follow:
1, Navigate to Online Store > Themes > Edit Code.
2, Locate and open the base.css (or theme.css, custom.css) file.
3, Paste the code snippet provided below at the bottom of the file, then save your changes.
.m-main-product--info .m-product-info--wrapper {
position: static !important;
}
We hope this assists in resolving the issue.
If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!
If our suggestions are useful, please let us know by giving it a like or marking it as a solution.
Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)
Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page