Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter nvieira

    (@nvieira)

    Sorry, english is not my first language.

    What i mean is that menu in shiftnav panel disappears when site main-menu disappears (under 960px). I try not to hide main menu selector, but the problem is there anyway.

    The website is https://soleluzconstrucoes.com/experiencia

    I need help, please.

    Thanks again,
    Nuno Vieira

    Plugin Author sevenspark

    (@sevenspark)

    Hi Nuno,

    To hide the theme menu, I would use this selector:

    #site-navigation

    The reason your menu is hidden on mobile is due to this overly generic code in your theme’s style.css:

    @media (max-width: 960px) {
      nav ul     { display: none; }
      nav select { display: inline-block; }
    }

    That hides all ULs within nav elements. Sadly this isn’t coded modularly at all (doesn’t use appropriate classes), so it applies to all menus.

    Since it’s so generic it can’t be avoided, I’d suggest overriding it like this:

    .shiftnav ul{
    	display:block;
    }

    Hope that helps,

    Chris

    Thread Starter nvieira

    (@nvieira)

    HI Chris,

    thanks for your help.

    It works correctly!

    I will buy this plugin. It′s great. Good work.

    Best regards,
    Nuno Vieira

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘having a problem’ is closed to new replies.