Sticky content not working on product page

Topic summary

A user reports that the sticky content feature is not functioning on their product pages using the Craft theme. The issue affects the product information section that should remain visible while scrolling.

Proposed Solution:

  • Another user suggests adding CSS code to fix the sticky positioning
  • The code targets .product__info-wrapper.grid__item with:
    • position: sticky
    • top: 0 !important

Status: The discussion remains open with no confirmation whether the CSS solution resolved the issue.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hi

on my store the ‘Sticky content’ not working on product page

theme:- Craft

store:- https://aesthetixme.shop/products/pannkh-solid-embroidered-maxi-dress-with-tie-up

Thank you

try using the code below

.product__info-wrapper.grid__item {
    position: sticky;
    top: 0 !important;
}