badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

responsive toggle menu not displaying

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #50094
    mlewebsiteinfo
    Participant

    The toggle menu is not displaying when the screen size shrinks, even with the responsive mode turned on. I added custom css to change the navigation colors, but nothing else. Could that have caused the toggle menu to disappear?
    http://mythiclanding.com/staging/ridgeview/

    #50098

    Hi mlewebsiteinfo,
    Did you made any code customization in the theme? It seems that while creating child theme you have done something mistake.
    Please add below code in functions.php

    function ultimate_enqueue_styles() {
    
        $parent_style = 'ultimate_style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
    
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style ),
            wp_get_theme()->get('Version')
        );
    }
    add_action( 'wp_enqueue_scripts', 'ultimate_enqueue_styles' );

    Thsnk you

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