Double announcement bar is reflecting and I can't find out why

Hi there,

A double announcement bar is reflecting and I can’t seem to remove it or find where it’s coming from when it’s correct in the theme. Please see attached photo.

URL: https://www.adornbyalexandrariley.com

Let me know if you need a different URL.

Thank you!

@wkerney – I suppose the top bar comes from the app Free Shipping Bar. The bottom one is the themes announcement bar. You can either use the adequate settings to disable them, or if necessary hide them using CSS. (Append the code below to your assets/theme.(s)css(.liquid) file, unless you know how else to apply the code. :wink: )

Which one do you want to have hidden?

Top bar:

#fsb_container {
  display: none !important;
}

Bottom bar:

#shopify-section-announcement-bar {
  display: none;
}

Hope this helps,
Mario

Ah, perfect! Thank you so much! I removed it.

You’re welcome, @wkerney !