[Resolved] Change widget background : screen size

Home Forums Support [Resolved] Change widget background : screen size

Home Forums Support Change widget background : screen size

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #112492
    Heath

    Hey Tom,

    I’ve used “backgrounds” to add a background image to my widget footer area. However, I don’t like the way it looks on smaller screens, so I want to replace it with a solid color. This is the CSS I tried but it’s not working. I also tried putting the color #cfd6dd after “none”. Help?


    @media
    screen and (max-width: 800px) {
    #footer_container {
    background: none;
    }
    }

    I got “sections” and am enjoying it. I’ll post a link to my website soon. Thanks as always for your support which is second to none!

    #112493
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try this instead:

    @media screen and (max-width: 800px) {
          .footer-widgets {
                background: none;
          }
    }
    #112495
    Heath

    Dang, I knew I was close! That worked, and I changed it to background: none #color;

    Thanks!!

    #112496
    Tom
    Lead Developer
    Lead Developer

    No problem! 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.