Viewing 1 replies (of 1 total)
  • Plugin Author Craig at Smash Balloon

    (@craig-at-smash-balloon)

    Hey icemanblabla00,

    There are a few options for this:

    1) You can disable the mobile layout by checking the appropriate box on the “Customize” tab (https://snag.gy/lz2QrC.jpg).

    2) You could use media queries to create your own custom layout for mobile devices. To do this go to the “Customize” tab and scroll down to the “Custom CSS” area. Add in this code:

    /* Media queries */
    @media all and (max-width: 640px){
      #sb_instagram.sbi_col_4 #sbi_images .sbi_item{
        width: 50%;
      }
    }
    
    @media all and (max-width: 480px){
      #sb_instagram.sbi_col_4 #sbi_images .sbi_item{
        width: 50%;
      }
    }

    The 640px and 480px numbers represent the screen width that the code will apply to. The 50% number is the width of the image when the screen is that size.

    Let me know if you have any questions!

    Thanks,

Viewing 1 replies (of 1 total)
  • The topic ‘Instagram Feed doesn't show responsive !’ is closed to new replies.