My Announcements disappear when adding a second one in the same announcement bar

Topic summary

A user is experiencing an issue where announcements disappear when attempting to add a second announcement to the same announcement bar.

Problem Details:

  • Multiple announcements cannot coexist in a single announcement bar
  • The first announcement vanishes when a second is added

Current Status:

  • The user has not modified theme files or announcement-related code
  • No solution has been identified yet
  • The issue appears to be a configuration or potential bug rather than a customization problem

The discussion remains open with the user seeking guidance on how to resolve this announcement bar limitation.

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

Not sure how to fix it, I haven’t edited the theme/announcement files.

1 Like

Ok so I noticed that if in component-slider.css I did make a change in

.slider-buttons {

display: flex;

align-items: center;

justify-content: center;

}

where I changed the display option from “flex” to “none” to remove the slideshow buttons.

So how can I remove the slideshow buttons without potentially breaking the announcement bar?

Ok, I found the solution, under “base.css” I inserted

slideshow-component .slideshow__controls {
display: none;
}

and it worked for both my top and bottom slideshow!