• Resolved muditametta

    (@muditametta)


    Hi there,

    I am trying to make my instagram widget full width, but leave the product gallery the width it is currently at. Does anyone know how to change this. I am using a full width theme, so I’m not sure why the instagram widget doesn’t know right to the edges. I would also like it to go right to the footer so there is no white gap in between. Is there a custom css code I can add into my theme to change this?

    My theme is Flatsome and my website is http://www.muditametta.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s not really a full width theme. Even if you look at the demo page, the content doesn’t go all the way to the edges.

    If you want all of the footer to expand to the edges, you can add this rule to your child theme’s style.css file:

    .footer-1 .row {
        max-width: none;
    }

    However, this will also expand the width of the Woocommerce text widget just above the Instagram widget. If that doesn’t suit you, then add this rule as well:

    #text-12 {
        max-width: 67.5em;
        margin: 0 auto;
        float: none !important;
    }

    Then this rule will remove the gap between the instagram widget and the footer:

    #jr_insta_slider-13 {
        margin-bottom: 0;
    }

    Thread Starter muditametta

    (@muditametta)

    Hi,

    Sorry for the late response, thanks so much for your help. That worked 🙂

    Megan

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Full Width Widget’ is closed to new replies.