• I want all of my sidebar text widgets to have this background color: efefef

    Instead of making the change to the template, is it possible to apply the change within each individual widget?

    If not, please tell me how to just change it in the template.

Viewing 1 replies (of 1 total)
  • You can check the Id of the text widget in source #text-3 or other numbers. Then,

    #text-3{
    background-color:#efefef;
    }

    The ID is set to the LI of the widget.

    Or the class for all text widgets

    .widget_text{
    background-color:#efefef;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘how do you change the background color of text widgets?’ is closed to new replies.