How to remove old text from bottom of Home page

Topic summary

A Shopify store owner using the Parallax theme discovered an outdated promotional banner at the bottom of their homepage. The banner displayed “Enter FIRSTORDER at the Checkout for 10% off your first order | Free shipping Australia wide for orders over AU$80” and was brought to their attention when a customer reported the code wasn’t working.

Problem: The user couldn’t locate where this text was added years ago—it wasn’t in the footer or easily accessible theme settings.

Solution provided: Add CSS code to hide the banner element (div#fsb_bar) by either:

  • Editing the styles.css file directly in the theme code, or
  • Using the Custom CSS section in Theme Settings (Customize)

The CSS snippet div#fsb_bar { display: none !important; } successfully removed the banner.

Status: Resolved—the user confirmed the solution worked.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

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!