Hey @recetteitalienne,
I can see on the site that the shortcode used has formatting so the class has become ”sbi_sidebar” instead of sbi_sidebar.
Please check the shortcodes on the sites do not use formatted citation marks like they are currently. Test changing them to this:
[instagram-feed class='sbi_sidebar']
and in the footer use
[instagram-feed class='sbi_footer']
Make sure you Remove this CSS that I provided previously:
@media only screen and (min-width:576px) {
#sb_instagram {
display: none !important;
}
}
And instead use the latest one I sent:
@media only screen and (min-width:576px) {
#sb_instagram.sbi_footer {
display: none !important;
}
}
@media only screen and (max-width:575px) {
#sb_instagram.sbi_sidebar {
display: none !important;
}
}
Best regards,