• Resolved patbell101

    (@patbell101)


    This may be a theme specific issue. In fact my theme support (site origin Vantage) gave me this css to solve it. I show it here in case anyone else has a similar problem.

    .main-navigation {
    z-index: 101;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter patbell101

    (@patbell101)

    It would be good to not need the css though. Does anyone else have this issue perhaps on a different theme?

    MA

    (@gasparnemes)

    Hi there,

    You can add the following code snippet to your theme functions.php

    add_action('moove_gdpr_inline_styles','moove_gdpr_css_extension',10,3);
    function moove_gdpr_css_extension( $styles, $primary, $secondary ) {
    	$styles .= '.lity { z-index: 9999999; }';
    	return $styles;
    }

    I hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menu bar shows on top of settings’ is closed to new replies.