Re: Sticky announcement bar on Symetry theme

Solved

Sticky announcement bar on Symetry theme

Lars_Veldman
Excursionist
18 0 5

I am using the Shopify Symmetry theme and would like to make the announcement bar sticky so that it remains at the top of the page while scrolling.

Accepted Solution (1)
websensepro
Shopify Partner
1869 220 266

This is an accepted solution.

The code i gave you above, I am attaching the screenshot below, please set the top to 39px only.

 

websensepro_0-1737466128122.png

websensepro_1-1737466238335.png

 

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 10 (10)

topnewyork
Astronaut
1299 160 217

Hello,
Please share "Store URL" 
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Lars_Veldman
Excursionist
18 0 5
Hi, the url is:

Refined-melbourne.com
topnewyork
Astronaut
1299 160 217

Hi @Lars_Veldman 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.announcement-bar .container {
    position: sticky !important;
}
</style>

 If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

websensepro
Shopify Partner
1869 220 266

Hi @Lars_Veldman 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

 

.shopify-section.shopify-section-group-header-group.section-announcement-bar {
    position: sticky;
    top: 0 !important;
    z-index: 401 !important;
}
.section-header {
    top: 30px !important;
}

 

Result:

websensepro_0-1737464444617.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
Lars_Veldman
Excursionist
18 0 5
That is great! I have one more question. When in mobile view, when I scroll the header makes te announcement bar a little smaller. Can I change something so that in mobile view the announcement bar does not get smaller?
websensepro
Shopify Partner
1869 220 266

@Lars_Veldman 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

 

@media only screen and (max-width: 767.98px) {
    .section-header {
         z-index: 400 !important;
    }
}

 

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
Lars_Veldman
Excursionist
18 0 5

Thanks, I only have one question. see the two images below. Now when i scroll the space between the announcement bar and the logo is going to be smaller and i want it to stay the same.

 

Scherm­afbeelding 2025-01-21 om 14.22.52.png

Scherm­afbeelding 2025-01-21 om 14.23.02.png

websensepro
Shopify Partner
1869 220 266

This is an accepted solution.

The code i gave you above, I am attaching the screenshot below, please set the top to 39px only.

 

websensepro_0-1737466128122.png

websensepro_1-1737466238335.png

 

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
websensepro
Shopify Partner
1869 220 266

@Lars_Veldman 

Please mark all my solutions and like them as well.

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
Lars_Veldman
Excursionist
18 0 5

Thanks for the great help!