Mobile layout broken after recent plugin update
-
My client uses your plugin to show their Instagram posts.
It looks like the layout has broken in mobile devices after a recent plugin update.
Looking at the CSS, I can see that the following is overriding the correct number of columns for mobile (set to 2 in the feed layout settings) and setting it to 6 columns:#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images { grid-template-columns: repeat(6, 1fr); }
What I’m trying to figure out is why the
.sbi_disable_mobile
class is used above. So far as I’m aware, the feed was never disabled in mobile and I can’t see an option for that anywhere anyway.The above CSS is overriding the correct CSS, which is as follows:
@media (max-width: 480px) { #sb_instagram.sbi_mob_col_2 #sbi_images { grid-template-columns: repeat(2, 1fr); } }
Any help would be appreciated.
The page I need help with: [log in to see the link]
- The topic ‘Mobile layout broken after recent plugin update’ is closed to new replies.