product section width

hi there

my store url is sundip1.myshopify.com and i have sticky side bar and its overlapping my products i need my products to be on right side

Hi @BDPK

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings

@media (min-width: 750px) {
.index-section .grid--full {
    max-width: calc(1220px - 330px);
    float: right;
}
#shopify-section-footer {
    width: 100%;
    overflow: hidden;
}
}

thanks for the solution but after putting this code it says

ONLINE STORE SESSION CANT BE PUBLISHED

So please add this code to theme.liquid file after in Online Store > Themes > Edit code

@media (min-width: 750px) { .index-section .grid--full { max-width: calc(1220px - 330px); float: right; } #shopify-section-footer { width: 100%; overflow: hidden; } }
1 Like

after adding given code my store seems like this