• Resolved gustavors

    (@gustavors)


    I have a website that uses the theme and the main menu just disappeared.
    With the inspector elements I find it in the CSS, but it does not appear.
    Has anyone experienced this?
    The site is: http://personalizzebrindes.com/

Viewing 6 replies - 1 through 6 (of 6 total)
  • mrtom414

    (@mrtom414)

    I know it’s a CSS problem. Your menu is there it just collapsed for some reason

    EMG

    (@emg)

    I vote HTML AND CSS issue.

    I put your site through the W3C Validator and it pulled up some errors (not all will cause problems, but some will) and some of these errors included unclosed and open elements which means you have some coding tags that need to be closed and/or nested properly.

    CSS Validation also pulls up missing semi-colons and parse errors related to a menu class, so that would definitely do it, too.

    Fix them both (check your tags and make sure they’re closed properly and nested properly and fix your CSS issues related to the semi-colons and parsing!) and it may very well fix your missing menu problem.

    Cheers!

    mrtom414

    (@mrtom414)

    If I remove the collapse class from this line your menu appears `<div class=”nav-collapse collapse tc-hover-menu-wrapper”>
    <div class=”menu-novo-container”> `

    Yeah the problem is that bootstrap plug-in which has this rule:

    .collapse {
        display: none;
    }

    So force the showing adding the following rule to your custom css, or your child theme style.css

    @media (min-width: 980px) {
        .nav-collapse.collapse {
           display: block !important;
        }
    }

    Thread Starter gustavors

    (@gustavors)

    Tanks d4z_c0nf!

    Hi, I am new to WP. I also am having the menu button disappear too fast when clicked on mobile devices. Where do I insert this code. I have a child theme and tested inserting the code on the custom CSS and the style.css on the child theme and it did not work. Any help will be greatly appreciated. Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Menu disappeared’ is closed to new replies.