On 16/07/07, Benct Philip Jonsson bpj@melroch.se wrote:
On 16.7.2007 Rob Church wrote:
You could set this to "text-transform: none" in MediaWiki:Monobook.css, but this would affect all content action tabs. The following might work to override it just for the namespace tabs, depending upon the browser:
div#p-cactions li[id|="ca-nstab"] a { text-transform: none; }
...however, this will affect the main namespace and other tabs, which I'm not sure is what's desired. I suppose you could always go back and un-override the value for those namespaces you don't want it for, or you could specifically only override those namespaces you *do* want it for.
How would I specifically override it only for certain namespaces?
div#p-cactions li#ca-nstab-<namespace> { text-transform: none; }
where <namespace> is the same thing, with spaces swapped for underscores.
Rob Church