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

    (@nextend_ramona)

    Hi @fredbanor

    In some themes, when the default slider is replaced, there are some theme codes that won’t run, e.g. the code that removes some classes from your HTML tag, which will make this display:none code overridden in your menu:

    .site-header-menu {
        display: none;
        -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

    This code can be found in this file: http://beetechnology.fr/wordpress/wp-content/themes/azera-shop/style.css
    and I would suggest finding it and removing or commenting the display: none property, like this:

    .site-header-menu {
        /*display: none;*/
        -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

    and your menu will show up in all of your pages: http://imgur.com/NIpX90W

    Thread Starter fredbanor

    (@fredbanor)

    Worked like a charm!

    Wow thank you SO MUCH for such an awesome support.

    F.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menu issue with Smart Slider 2’ is closed to new replies.