Attributo CSS per il nuovo pulsante argomento?

Ultima domanda CSS, lo giuro. La maggior parte del mio sito è personalizzata con CSS, ma non riesco a capire il codice CSS per cambiare il colore del pulsante “Nuovo argomento” (sia in hover che non in hover).

Forse puoi modificarlo nelle impostazioni di amministrazione insieme ad altri elementi dell’interfaccia utente tramite lo schema dei colori, ma sto cercando l’attributo CSS specifico.

Grazie!
Jen

1 Mi Piace

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 Mi Piace