• When i pull my site up on an Ipad it displays the desktop Main Nav instead of the mobile Nav. The main Nav contact link goes to a second line and it just doesn’t look good. Is there anyway to fix this? I would like the mobile nav menu to display on most tablets if possible.

    Here’s my site: http://borderlandexpeditions.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey, Is this in landscape mode or portrait?

    In your theme options > logo settings you have the logo set to take up half the header, you might want to change that to 1/4 so you leave room for the menu as a screen size gets smaller.

    Kadence Themes

    Thread Starter andrew90

    (@andrew90)

    Landscape. That fixed the problem of the Main Nav showing up on two lines but still not going to the mobile nav option. That’s at least better. I’m also having trouble with my logo looking good on high-res screens such as my ipad.

    Ok if you want the mobile when your in landscape mode on the ipad you can use this css in your theme options > advanced settings:

    @media only screen and (device-width: 768px) {
        #nav-main ul.sf-menu {
            display: none;
        }
        #mobile-nav-trigger {
        display: block;
        }
        header #nav-main {
        margin: 0;
        }
    }

    Logo, hmm, try adding this:

    @media only screen and (device-width: 768px) {
    #logo .kad-standard-logo {
    display: none;
    }
    #logo .kad-retina-logo {
    display: block;
    }
    }

    Kadence Themes

    oh missed one thing, you will need to change the menu css out for this, not what I posted above:

    @media only screen and (device-width: 768px) {
        #nav-main ul.sf-menu {
            display: none;
        }
        #mobile-nav-trigger {
        display: block;
        }
        #kad-mobile-nav {
        display: block;
        }
        header #nav-main {
        margin: 0;
        }
    }
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Displaying correctly on Ipad’ is closed to new replies.