• Resolved stug2013

    (@stug2013)


    Hi, I am trying to color the footer widget area. I have looked at the area in firefox developer inspector and it identifies it as footer-widgets. I have tried putting the below code in the style.css but it is not working. Can you see what I have done wrong?

    /*color the footer widget area */
    .footer-widgets.container{
    background-color: aqua;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Stu. The footer-widgets is an id instead of a class so needs a # prefix instead of a period.

    /*color the footer widget area */
    #footer-widgets.container{
        background-color: aqua;
    }
    Thread Starter stug2013

    (@stug2013)

    yep that did the trick. One day I’ll get the hang of this ?? Thanks again bdbrown.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘color footer widget area’ is closed to new replies.