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*

Mobile Menu

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #65194
    Rufando
    Participant

    The mobile MAIN Menu and SUB-CATEGORIES menu are not showing. When clicked it immediate closed up. Any fix? Thanks

    #65223

    Hi Rufando,

    Can you please provide us your site URL? where you are having a problem. Also please do check our demo site for the same issue.

    Thank you!

    #65314
    Rufando
    Participant

    This is my site: https://pptxworship.com/

    #65341

    Hello Rufando,

    Can you please check deactivating the plugin one by one? If may be the plugin conflict.

    Thank you!

    #81391
    Rufando
    Participant

    Hello. Thanks you for the response.

    Please look at my site, there’s no “SEARCH” button/icon on moblile, only in Desktop. I tried to make a small logo but its the same, NO search tool on top. How to put a search icon to search my site? Thank you.

    #81512

    Please go to Theme directory > header.php file. On line on: 52 you will find below line of codes.

    </div><!-- .site-branding .navbar-brand -->

    Now replace the above mention code with the code provided below.

    </div><!-- .site-branding .navbar-brand -->
    <span class="search-toggle mobile-view-toggle"></span>

    NOTE: Make sure you make the child Theme to customize the code so that your customized code won’t get lost when updating the Theme to a newer Version in Future.

    Now Go to ‘Dashboard > Appearance > Customize > Additional CSS’ and paste the below custom CSS Code.

    .navbar .search-toggle.mobile-view-toggle {
    	display: none;
    }
    @media (max-width: 991px) {
    	.navbar .search-toggle.mobile-view-toggle {
    		display: block;
    		padding: 10px;
    		position: absolute;
    		top: 17px;
    		right: 50px;
    	}
    	.search-block .search-form {
    		width: 90%;
    	}
    }
    #81891
    Rufando
    Participant

    This is what happened when I added the code to header.php and to Additional CSS
    Link: https://pptxworship.com/wp-content/uploads/2020/10/th-mobile.jpg

    On Desktop and right on mobile, both look bad.

    #82209

    According to the screenshot, we found you have replaced the provide code in wrong place. May be you have added some extra code before on top so the line no didn’t match. Please search a bit down side(lines) more to find the code </div><!-- .site-branding .navbar-brand --> and replace on it. Make sure while replacing the code the first line code is the same code that you have find. The objective is just to the add second line code that is about the search toggle.

    #82603
    Rufando
    Participant

    Thank you very much for the answer. I did it! BUT how to make the mobile search icon more bigger? Thanks for the reply

    #82769

    Hi Rufando,

    To make the mobile search icon more bigger just go to Appearance > Customize > Additional CSS and paste the below custom CSS code

    @media (max-width: 991px) {
        .navbar .search-toggle.mobile-view-toggle {
            top: 10px;
            font-size: 20px;
        }
    }
    #83980
    Rufando
    Participant

    Thank you very much

    #83991

    Welcome anytime Rufando.

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