• Hello!

    I am having an issue with no menu on mobile.

    https://azcustombottledwater.com

    here is the custom CSS I have in place on the child theme in case it is of use;

    .page .post_title_con {
        display: none;
    }
    
    .content_section .page_title {display: none;}
    
    .page_title .breadcrumbs .crumbs-spacer {display: none;}
    .breadcrumb > .active {display: none;}
    .breadcrumb > li {display: none;}
    .breadcrumb {display: none;}
    .white_section.page_title .breadcrumbs a:hover{display: none;}
    .white_section.page_title .breadcrumbs a{display: none;}
    .page_title .breadcrumbs a:hover{display: none;}
    .white_section.page_title .breadcrumbs{display: none;}
    
    #footer {
        display: none;
    }

    Any chance for a quick glance from someone? I would appreciate it I am banging my head here.

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    Have you made any changes into your core theme directory?

    If yes, what changes you have done.

    And please try to deactivate all the plugins one by one.

    Please provide your “Child-Theme” package so that we can check it.

    Let us know for further assistance.

    Thank You

    Thread Starter logogeeks

    (@logogeeks)

    well,

    I know it is something in my child-theme that I have changed; because upon doing my own troubleshooting I found that using the parent theme, the mobile menu exists.

    Thread Starter logogeeks

    (@logogeeks)

    when you say my child-theme package; how do I get that to you; zip the child-theme dir… or?

    Hi,

    Please upload your package online and provide a package link so that we can download it.

    Thank You

    I had the same issue. This is how I got it working. It may not be the best way, but it worked for me.

    Update the functions.php file for your child theme to include the responsive.css:

    function child_enqueue_styles() {
        $parent_style = 'parent-style';
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/responsive.css' );
    	wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/custom.css', array( $parent_style ));
    }

    Then, I had to add the following to custom.css because it wasn’t working for some reason:

    @media only screen and (max-width: 992px) {
      .mobile_menu_trigger {
        display: inline-block;
        height: 0;
        position: absolute;
        right: 0;
        top: 38px;
      }
    }

    Hope this helps in some way.

    Hi logogeeks,

    Did the above solution for you?

    Thank You

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Theme: Kyma] Menu not showing in mobile’ is closed to new replies.