Make image banner sticky

Solved
arjaedesigns
New Member
7 0 0

Hi! I have an image banner directly under my header on my landing page that I would like to be sticky along with my header. The image header I am referring to is the purple bar that says “Oder your dress, send your fabric..etc” URL is http://arjaedesigns.com thank you!

 

IMG_3137.png

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5502 1007 1035

This is an accepted solution.

Hi, that code I sent you will make that image sticky in mobile only. If you want to make it sticky both for deskop then please edit code like this 

<style>
#shopify-section-template--16051720421527__2899f3cd-f9cd-4163-879e-a4c428ea6d6c {
position: sticky !important;
top: 84px;
z-index: 9;
}
@media (max-width: 767px) {
#shopify-section-template--16051720421527__2899f3cd-f9cd-4163-879e-a4c428ea6d6c {
top: 64px !important;
}
}
</style>

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 4 (4)
Dan-From-Ryviu
Shopify Partner
5502 1007 1035

Hi @arjaedesigns 

Please add this code to your theme.liquid file before </head> tag in Online store > Themes > Edit code 

<style>
@media (max-width: 767px) {
#shopify-section-template--16051720421527__2899f3cd-f9cd-4163-879e-a4c428ea6d6c {
position: sticky !important;
top: 64px;
z-index: 9;
}
}
</style>

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

arjaedesigns
New Member
7 0 0

Thank you @Dan-From-Ryviu , unfortunately this didn't work. I do already have my header set as sticky, which works, but I want the image banner to be sticky too.

Dan-From-Ryviu
Shopify Partner
5502 1007 1035

This is an accepted solution.

Hi, that code I sent you will make that image sticky in mobile only. If you want to make it sticky both for deskop then please edit code like this 

<style>
#shopify-section-template--16051720421527__2899f3cd-f9cd-4163-879e-a4c428ea6d6c {
position: sticky !important;
top: 84px;
z-index: 9;
}
@media (max-width: 767px) {
#shopify-section-template--16051720421527__2899f3cd-f9cd-4163-879e-a4c428ea6d6c {
top: 64px !important;
}
}
</style>

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

arjaedesigns
New Member
7 0 0

That worked - thank you so much!