How to remove old text from bottom of Home page

Solved

How to remove old text from bottom of Home page

Vera_Cvetkovik
Tourist
12 0 1

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?Screenshot 2025-02-20 at 8.44.49 am.png

Accepted Solution (1)
LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

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: 

LizHoang_0-1740014586957.png

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

View solution in original post

Replies 5 (5)

LizHoang
Shopify Partner
1251 159 196

Hi @Vera_Cvetkovik , can you share store url?

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
Vera_Cvetkovik
Tourist
12 0 1

Hi Liz, it's silktop.com.au

 

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

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: 

LizHoang_0-1740014586957.png

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
LizHoang
Shopify Partner
1251 159 196

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: 

 

LizHoang_0-1740014803849.png

 

Best, 

 

Liz

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
Vera_Cvetkovik
Tourist
12 0 1

Thanks Liz, that did the trick!