How do I change background color in Text and Menu Widget using Big Brother theme

  • Unknown's avatar

    How do I change background color in Text and Menu Widget using Big Brother theme?

    The blog I need help with is: (visible only to logged in users)

  • This CSS changes background color of all the widgets to light blue.

    .secondary.widget-area .widget {
        background: lightblue;
    }

    If you wish to have a different background color for each widget, use this CSS instead:

    .secondary.widget-area #text-3 {
        background: lightblue;
    }
    
    .secondary.widget-area #text-5 {
        background: pink;
    }
    
    .secondary.widget-area #nav_menu-7 {
        background: lightyellow;
    }

    Please change the colors as you wish in all the above rules :-)

  • The topic ‘How do I change background color in Text and Menu Widget using Big Brother theme’ is closed to new replies.