Home Forums Pro Themes Travel Eye Pro Menu Styling Removal

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #54663
    Leon Tan
    Participant

    How to remove default menu styling with css to use Max Mega Menu Plugin

    website is https://carpetsbydesign.net.au

    Thank you

    #54732
    wensolutions
    Keymaster

    Hello @leontan15,

    While we have inspected your website URL, the CSS implemented for the primary menu seems to be applied from the Max Mega Menu Plugin itself and not the theme styles.

    Please make sure the layout / styling for the mega menu is applied correctly in the plugin itself from the WordPress dashboard.

    Alternatively, you can also remove the theme default navigation wrappers by creating child theme add adding in the following code in your child theme’s functions.php file :

    /**
     * Site branding.
     *
     * @since 1.0.0
     */
    function travel_eye_add_primary_navigation() {
    	wp_nav_menu( array(
    		'theme_location' => 'primary',
    		'menu_id'        => 'primary-menu',
    		'fallback_cb'    => 'travel_eye_primary_navigation_fallback',
    	) );
    }

    Hope this Helps,

    Best Regards !!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.