MediaWiki talk:H3CSS.css

From Heroes 3 wiki
Revision as of 21:39, 31 March 2025 by Imahero (talk | contribs)
Jump to navigation Jump to search

setting table color to white

I just noticed this was already set but wasn't working for all the TH in the table:

.wikitable {
    color: #ffffff !important;
}

Targeting specifically the TH actually worked because a more specific selector takes precedence over a less specific one.

.wikitable th {
    color: #fff!important
}

Minify

toptal.com/developers/cssminifier