Help me fix my broken scrolling announcement banner!

Solved

Help me fix my broken scrolling announcement banner!

Lizzo333
Excursionist
28 0 6

Hi there!

I'm using Dawn theme. 

 

My URL is https://www.outerlayer.com.au/ and password to access is xxxx

 

The announcement banner on my homepage and my product page template is broken and appearing like this:

Screenshot 2025-06-06 at 12.59.59 PM.png

It should be scrolling slowly with 6 separate messages. 

Are you able to help me understand what's happened and how to fix this? 

Thank you so much!

Lizzy 

Accepted Solution (1)

websensepro
Shopify Partner
2137 267 318

This is an accepted solution.

Hi @Lizzo333 ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.ss-announcement-bar__message {
    background: #8a1a46 !important;
}
</style>

Result:

websensepro_0-1749191662481.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 5 (5)

tim
Shopify Partner
4765 589 1718

This rule you've added earlier makes it yellow on yellow:

      .focus-none span {
         background: #fffdf2 !important;
      }

Screenshot 2025-06-06 at 1.17.39 PM.png

 

You need to be careful adding overly broad rules like this which may affect multiple elements.

If you can't come up with a better selector -- add them into sections "Custom CSS", this will make them more targeted.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

websensepro
Shopify Partner
2137 267 318

This is an accepted solution.

Hi @Lizzo333 ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.ss-announcement-bar__message {
    background: #8a1a46 !important;
}
</style>

Result:

websensepro_0-1749191662481.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
Lizzo333
Excursionist
28 0 6

Awesome @websensepro that worked perfectly – thank you! 🙂 

Lizzo333
Excursionist
28 0 6

@websensepro I have another question for you regarding the same scrolling announcement bar.

The bar appears like this usually:

Screenshot.png

 

But when you hover over it, the colour disappears – it doesn't look good:

Screenshot 2025-06-07 at 11.22.00 AM.png

Do you know how to remove this effect when hovering over the bar? I want the colour to remain the same when the user hovers over it. 

Thank you!!!

tim
Shopify Partner
4765 589 1718

There is this rule in the section you've added:

  .ss-announcement-bar:hover {
    opacity:0.100;
  }

You can remove it, or add a rule like this to this sections   "Custom CSS" setting:

  .ss-announcement-bar:hover {
    opacity:1;
  }

or even:

  .ss-announcement-bar:hover {
    opacity: 1 !important;
  }

 if previous does override existing rule.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com