| question | How to change the color of the (usually green) top action bar (into any color) ? |
| answer |
To change the color of the top action bar you have two solutions:
@import "xwiki.css"; @import "wiki.css"; @import "page.css"; @import "rss.css"; #xwikinav_footer, #xwikinav_header { border-color: #5368A6; background-color: #B6C5F2; } .xwikiactions a, #xwikiwebusermenu a, #xwikilanguagemenu a { background-color: #5368A6; color: white; }
|