Risposta fantastica!!! Grazie mille!
Potrei aver bisogno di un altro consiglio CSS… come potrei minificare al meglio questi due pezzi di codice?:
Cambia il colore del pulsante [+ New Topic] nell’intestazione
Questo pulsante nell’intestazione esiste grazie a (+ New topic) button on all pages Theme
.header-buttons .btn.btn-default {
background: #00ccff;
color: #fff;
font-weight: 600;
}
.header-buttons .btn.btn-default svg {
color: #fff !important;
}
.header-buttons .btn.btn-default:hover {
background: #00a3cc;
}
Cambia il colore del pulsante [+ New Topic] nelle pagine delle categorie e dei tag
button#create-topic {
background: #00ccff;
color: #fff;
font-weight: 600;
}
button#create-topic svg {
color: #fff !important;
}
button#create-topic:hover {
background: #00a3cc;
}