新しいトピックボタンのCSS属性は?

CSSの質問はこれが最後です。私のサイトの大部分はCSSでカスタマイズされていますが、新しいトピックボタンの色(ホバー時と非ホバー時)を変更するCSSコードがどうしてもわかりません。

おそらく管理設定で他のUIと同様にカラーテーマを通じて変更できるかもしれませんが、特定のCSS属性を探しています。

ありがとうございます!
Jen

「いいね!」 1

Well the id on the button is create-topic (which since it’s an id you reference as #create-topic), and you use :hover to only apply something on hover. To change the button color you want to use background-color (if you want to change the text you’d use color).

So for example:

#create-topic {
    background-color: red;
}

#create-topic:hover {
    background-color: blue;
}
「いいね!」 4