Viewing 3 replies - 1 through 3 (of 3 total)
  • To target the widget areas you can use:

    .widget_text { border:1px solid #ccc; padding:10px; }

    I just added a little padding for breathing room, you’ll have to see what works with your site.

    .widget_tex is a class that is added for all your widget div’s.

    in style.css of your theme, find the style for #sidebar h4:

    #sidebar h4
    {
      color:#151515;
      font-size:1.5em;
    }

    and add ‘background-color:#123456;’ so that the result looks like:

    #sidebar h4
    {
      color:#151515;
      font-size:1.5em;
    background-color:#123456;
    }

    use your own color code.

    Thread Starter rcgibbons1

    (@rcgibbons1)

    Thank you, that worked. I was doing the same thing but I was working with the wrong header. Thanks very much!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fill widget title with color in sidebar’ is closed to new replies.