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 1 post (of 1 total)
  • Author
    Posts
  • #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 1 post (of 1 total)
  • You must be logged in to reply to this topic.