How to disable the banner topic dismiss button?

Hello, I wonder how to hide the banner topic dismiss buttong (right corner ). I don’t want users to dismiss the banner topic and in ther future, I would add sliders to add more dynamic vibe.

「いいね!」 2

You can just add css in your theme to target it and hide it.

「いいね!」 3

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

同じ問題を解決しようとしている他の人のために、このCSSを追加するだけで済みます。

#banner .floated-buttons>.btn {
    display: none;
}

新しいテーマコンポーネントの「共通」->「CSS」タブに

「いいね!」 1