How to remove old text from bottom of Home page

I hope someone can help - I have a very old notification showing only at the bottom of my Home page using Parallax theme - screenshot attached.

It’s the text below in the navy bar saying:

Enter FIRSTORDER at the Checkout for 10% off your first order | Free shipping Australia wide for orders over AU$80

I cannot remember where I added it but it was years ago, and cannot find how to remove it. Not even sure how long it’s been there, just noticed it when a customer sent me a message to ask why the code wasn’t working.

It’s not part of the footer (looked in the code section too).

Any suggestions anyone?

Hi @Vera_Cvetkovik , can you share store url?

Hi Liz, it’s silktop.com.au

Hi @Vera_Cvetkovik

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file styles.css and add this code at the end of the file

div#fsb_container {
    display: none !important;
}

Result:

Hi @Vera_Cvetkovik

You can follow this instruction:

  1. Go to Shopify > Theme > Customize

  2. Copy and paste this code on Theme settings > Custom CSS section

div#fsb_bar {
    display: none !important;
}

Here is the result:

Best,

Liz

Thanks Liz, that did the trick!