• Resolved limburgsevisser

    (@limburgsevisser)


    Hello,

    I have a problem, if I use the website on a desktop all is fine and the navigation bar is there. If I go with my mobile to my website the navigation bar is gone..

    How to get the navigation bar on the mobile theme

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Can you link me to your site?

    Let me know ??

    Thread Starter limburgsevisser

    (@limburgsevisser)

    Theme Author Tom

    (@edge22)

    Ah, remove this from your child the style.css:

    @import url("../generatepress/style.css");

    Also, you only need to add your custom CSS into your child theme style.css – not the parent theme CSS.

    You also have some PHP functions in there. They should be added like this: https://generatepress.com/knowledgebase/adding-php-functions/

    Thread Starter limburgsevisser

    (@limburgsevisser)

    I have remove it and I have not put php in the childtheme that was in t allready when I copy it from the mean style.css.

    But for now no effects the navigationbar still gone..

    Theme Author Tom

    (@edge22)

    You still have all of the parent CSS in your child theme style.css file.

    The only CSS in that file should be your custom CSS.

    Once the duplicated parent CSS is removed, the mobile menu should reappear.

    Thread Starter limburgsevisser

    (@limburgsevisser)

    Thanks allot u help me realy good.

    I didn’t know that the childtheme not need to copy the hole style.css of the main theme, I thought that u need to do that. So now I delete all of that and YES the menu is back in the mobile theme nice!!!

    One little question, how to make the title of the mobile theme little bit smaller, now I see LimburgseVisser.nl en the letter L is on a new line and I want to fit the hole text on one line.

    This is realy a nice theme and I love it, also the quick en good support of it. Keep up the good work!!

    Greatings

    Theme Author Tom

    (@edge22)

    Glad that helped ??

    Our typography add-on has an option to adjust the mobile size of your site title in the customizer.

    Otherwise you can use this CSS:

    @media (max-width: 768px) {
        .main-title {
            font-size: 20px;
        }
    }

    I have a similar problem. But it’s in the customize when I change the to tablet view my menu disappears and in mobile, the menu does not respond when clicked on. I’ve deactivated all my plugins and it seems to be the elementor plugin when I opened the edit button I seen this. I am too new to all this so I am not sure what I can do. Something with the php? Would this cause the plugin to not work correctly or fix my issue?

    Thanks

    /**
    * Show in WP Dashboard notice about the plugin is not activated.
    *
    * @since 1.0.0
    *
    * @return void
    */
    function elementor_fail_php_version() {
    $message = esc_html__( ‘Elementor requires PHP version 5.4+, plugin is currently NOT ACTIVE.’, ‘elementor’ );
    $html_message = sprintf( ‘<div class=”error”>%s</div>’, wpautop( $message ) );
    echo wp_kses_post( $html_message );
    }

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘No navigation bar on mobile theme’ is closed to new replies.