Header is covering my images in some pages

Hello im having problems with header of my page, its covering images of the following pages:

-Home - Desktop - The header its over an image banner

mrsan65_0-1653018900555.png

-Collections- Mobile- The header is over image collection

-Products - Mobile The image is over product image

Hope someone can help, thanks in advance

Welcome to shopify community.

Please share your store URL and if your store is password protected then please provide password too.

Thank you.

https://www.canvasplace.com.mx/

Please add below css in bottom of assets/theme.css file

For Desktop view:

div#shopify-section-16530103875038743a {
margin-top: 45px;

}

.header-sticky-wrapper {
top: 0;

}
and check is it proper or not then solve mobile view.
Thank you.

It worked well, only the mobile its left. Thanks in advance

@mrsan65

Could you provide me store URL? I should be able to answer your question.

Yours faithfully!

Please add below css in bottom of assets/theme.css file

@media only screen and (max-width:767px)

.collection-content {
padding-top: 48px;

}
Thank you.

Mmmm, this didn’t work.

www.canvasplace.com.mx

Please try this one:

Please add below css in bottom of assets/theme.css file

.collection-content {
padding-top: 48px;

}
Thank you.

Didnt work also

No one?

Found this solution in another topic, hope it helps someone else. Thanks everybody.

@media screen and (max-width: 768px){
body:not(.template-index) .main-content {
padding-top: 60px !important ;
}
}