Change Background Color of Buttons in Muffin Menu Widget

1. How do I change the background color of the sidebar Muffin Menu?
2. How do I change the color of the font in the same menu?

Here is the link:


Comments

  • Hello,
    only with custom css. The default bacground color and font color is not changeable from theme option, this is the CSS that controlls it:
    .widget_mfn_menu ul li a {
    display: block;
    padding: 7px 10px;
    margin-bottom: 5px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.04);
    color: #858585;
    }

    The active background color gor the button is the theme color, you set it in theme options>colors>content.

    thanks
Sign In or Register to comment.