Okay
  Public Ticket #3586794
app on mobile device
Closed

Comments

  •  12
    MeesterGijs started the conversation

    Hi Alex,

    See this video: http://somup.com/cZnboUpTkI

    Can we fix this? It must be some css that I use. Could you have a look? And please tell me what you did or what I need to do.

    Thanks!

    Gijs

  • [deleted] replied

    Please try adding this custom css in your wp-admin-> appearance-> customize -> custom css : 

    @media(max-width:768px){
        .vibebp_sidebars .vibebp_main {
        max-width: calc(100%);
    }
    }


  •  12
    MeesterGijs replied

     Thanks. So it has to do with 

    .vibebp_sidebars .vibebp_main

    I already had this code given by you with another ticket:

    .vibebp_sidebars .vibebp_main{
        max-width: calc(100% - 240px + 3rem);
    }

    We forgot that it would also effect smaller devices... So what I did was add this: @media(min-width:768px){....}

    That worked!