Remove announcement bar

Builder content link

What are you trying to accomplish
I want to hide the blue announcement bar at the top of the LP.
It’s being pulled in from our Shopify site.
I’ve tried adding this code, but it still appears:

}
.fRSPsc{
display: none;
}

Hi @racheldbailey,

Thanks for getting in touch.

The announcement bar is provided by privy-widget hence the code you have written isn’t working. You can hide the privy-widget announcement bar using the below code

#privy-widget{
    display: none;
}

Let me know if you still have any concerns or questions. Thank you!

1 Like

Thank you! That worked!

1 Like