• Resolved Chito

    (@chitaranjanthoudam)


    My menu is not much and wish not to show the responsive/mobile menu in tablet such as ipad mini, I was looking for a break point where I can set the device pixel to show the full menu, can you please help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,
    Hope you are good today.

    Without a site link, all I can do is give you some example code.
    Find your mobile menu CSS, then add this to have it show on IPad Mini.
    Your CSS should look like this.

    @media all and (max-width:1025px) {
    #mobile-menu {
    some styling rules;
    }
    }

    EDIT: You should also remove any @media query’s that are there.
    Thanks.

    Thread Starter Chito

    (@chitaranjanthoudam)

    Thanks for the input, I am able to achieved by changing the below code…

    /* Tablet Portrait */
    @media screen and (max-width: 640px) {

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the responsive menu break point’ is closed to new replies.