What's your biggest current challenge? Have your say in Community Polls along the right column.

How can I make my image banner sticky on the landing page?

Solved

How can I make my image banner sticky on the landing page?

arjaedesigns
New Member
8 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
10303 2044 2115

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 solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 4 (4)

Dan-From-Ryviu
Shopify Partner
10303 2044 2115

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 solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

arjaedesigns
New Member
8 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
10303 2044 2115

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 solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

arjaedesigns
New Member
8 0 0

That worked - thank you so much!