• Resolved born61

    (@born61)


    hi,
    i have a questions
    with ipad i see
    http://wpdev1.altervista.org/ipad-landscape.PNG
    menubar with items and button for open issue,
    I was not to see only issue?

    in the main-menu
    i see only buttom for open issue
    I was not to see only issue?

    screen resolution is 1024 and there is space for issue,
    whath is css breakpoint?

    thanks for ever

Viewing 2 replies - 1 through 2 (of 2 total)
  • so you want to see the menu for both while in landscape?

    Add this css:

    #kad-mobile-nav {
    	display:none;
    }
    #mobile-nav-trigger {
    display: none;
    }
    .kad-primary-nav ul.sf-menu, .nav-main ul.sf-menu {
        	display: block;
        }
    @media (max-width: 992px) {
    #kad-mobile-nav {
    	display: block;
    	height: auto;
    	}
    	#mobile-nav-trigger {
    	display: block;
    	height: auto;
    	}
    .kad-primary-nav ul.sf-menu, .nav-main ul.sf-menu {
        	display:none;
        }
    }

    Kadence Themes

    Thread Starter born61

    (@born61)

    perfect
    all i want
    thanks very much

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘responsive display and css breakpoint’ is closed to new replies.