Okay
  Public Ticket #370713
Responsive on mobile
Closed

Comments

  • Candice started the conversation

    Hi Tahir,

    My first bloc text is not responsive on mobile, could you tell me what i did wrong ?

    Thanks !

  •  8,472
    Tahir replied

    Hey Again!

    You need to place responsive media queries like this for the padding right left or use percentage if you dont want to use media queries.

    @media only screen and (max-width: 1000px) {
        body .wpb_text_column {
            padding-right: 17px !important;
            padding-left: 17px !important;
        }
    }
    @media only screen and (max-width: 420px) {
        body .wpb_text_column {
            padding-right: 5px !important;
            padding-left: px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • Candice replied

    Perfect !! Thanks Tahir !

    Same question but this time for my clients logo carrousel on the same home page just under the header slides. Could you help me ?

  •  8,472
    Tahir replied

    Hey Again!

    Its not possible with the carousel as thats controlled by JS .

    Thanks


    ThemeNectar Support Team