Farbe des Kategoriennamens im Themenkopf ändern?

What CSS could I put in to just change the text beneath the thread title (in this case “Music”) to white,? I’m using this excellent theme for reference (Sam's personal "minimal" topic list design) , but I changed the header to grey as I preferred it in the color palette, which unfortunately had the side effect of clashing with the category text below the title.

twww

Did you also change the header primary color to white (#ffffff) or some other light color? I believe that is what controls that text color.

You can also add this CSS

.extra-info-wrapper .badge-wrapper.bullet span.badge-category {
  color: white;
}
4 „Gefällt mir“

Yes, I had already changed the header primary color to white. However it doesn’t seem to carry over here. I also added the CSS under the Common tab in the theme and it didn’t change the color sadly.

Oh, I should add I’m also using the Custom Header Links extension, might that be affecting it?

Possibly! on a fresh with the white header primary color I see this…

3 „Gefällt mir“

I took it off for a minute and the color remained the same. Really not certain what it is, and it’s not a huge deal anyway, just a nitpick. I’ll try it with all of the extensions taken off later.

Ich konnte das Problem lösen, indem ich diesen Code in das Common-CSS meines Themes eingefügt habe.

.badge-wrapper .badge-category .category-name {
    text-overflow: ellipsis;
    overflow: hidden; 
    color: white;
}

Allerdings werden dadurch auch die Kategoriennamen auf der Startseite (Neueste) und unter dem Titel oben im Thread weiß dargestellt. Gibt es eine Möglichkeit, dies ausschließlich auf die Kopfzeile zu beschränken?