Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How to remove the white space above announcement bar?

Solved

How to remove the white space above announcement bar?

BSTNZ
Visitor
2 0 0

I have tried examples but cant find a solution - there is a white/blank space above the announcement bar.

 

https://blacksmoketrigger.com/

 

If you scroll, you can see through above the header/announcement bar. I would like the announcement bar to be locked to the top of the screen.

Accepted Solution (1)

PageFly-Richard
Shopify Partner
4801 1085 1753

This is an accepted solution.

Hi @BSTNZ 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
body > img {
    display: none;
}
</style>

PageFlyRichard_0-1707102688967.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 2 (2)

PageFly-Richard
Shopify Partner
4801 1085 1753

This is an accepted solution.

Hi @BSTNZ 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
body > img {
    display: none;
}
</style>

PageFlyRichard_0-1707102688967.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

BSTNZ
Visitor
2 0 0

Thank you so much.