You now have the option to change the colour of the navigation menu at the top and bottom of your boards. The simplest way to do this is with the following
code
Just add the code to your custom css and change the colours in red to suit.
To add a background image instead of just a solid colour, use the following code instead
This will tile an image along the menu
/* nav menu background colour */
.mgr-navigation-sliver { background: #000000; }
/* nav menu text colour & links */
.mgr-navigation-sliver, .mgr-navigation-sliver a:link,
.mgr-navigation-sliver a:visited, .mgr-navigation-sliver a:visited { color: #FFFFFF; }
.mgr-navigation-sliver { background: #000000; }
/* nav menu text colour & links */
.mgr-navigation-sliver, .mgr-navigation-sliver a:link,
.mgr-navigation-sliver a:visited, .mgr-navigation-sliver a:visited { color: #FFFFFF; }
Just add the code to your custom css and change the colours in red to suit.
To add a background image instead of just a solid colour, use the following code instead
/* nav menu background images */
.mgr-navigation-sliver { background: #00000 url(http://www.website.com/images/menu_bg.gif) center left repeat-y; }
.mgr-navigation-sliver { background: #00000 url(http://www.website.com/images/menu_bg.gif) center left repeat-y; }
This will tile an image along the menu
