Fantastic answer!!! Thank you so much!
I could use one more bit of CSS advice… how could I best minify these two bits of code?:
Change color of [+ New Topic] button in header
This header button exists because of (+ 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;
}
Change color of [+ New Topic] button in on category and tag pages
button#create-topic {
background: #00ccff;
color: #fff;
font-weight: 600;
}
button#create-topic svg {
color: #fff !important;
}
button#create-topic:hover {
background: #00a3cc;
}