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;
}
Hi,
Sorry for the late response, thanks so much for your help. That worked 🙂
Megan