Navigation menu, remove item from desktop

Although this is not really a WordPress question, but the visibility property does not actually HIDE any element. It only fades it so you can’t see it, but it still reserves space for it. You need to use the display property: .mobile-only { display:hidden; } @media (min-width:992px) { .desktop-only { display:block !important; } } @media … Read more

Change Menu Order

If it’s greyed out it’s because you haven’t created a menu yet. Once you give it a name and save it, you should be able to add pages and links to your menu. Once you have links/pages, you can begin to sort the menu by dragging them up or down.

Formatting WordPress Menus (without bullets, inline with text)

Assuming the menu has the structure <div id=”site-info”> Copyright (c) 2013 Acme Inc. All rights reserved. <ul class=”menu”> <li> Privacy Policy</li> <li>Terms and conditions</li> </ul> </div> You will need to add the following css” #site-info{ display: inline-block; line-height: 30px; /* adjust to aling everything up or remove */ } .menu{ list-style: none; /* to remove … Read more

Hamburger Navigation Menu

You could solve this with other nasty hacks but here’s kind of WordPress way: In your header.php <?php // User is not using mobile if( ! wp_is_mobile() ) { wp_nav_menu(); // Your “original menu” } // User is using mobile else if( wp_is_mobile() ) { wp_nav_menu(); // Your another menu that only has top level … Read more

Not even able to Log in [closed]

WordPress.org has its own accounts for the support forums and it has nothing to do with the logins for your website, or for WordPress.com, the hosted version of WordPress. When you self-host a website with the WordPress responsibility the management of your logins is your responsibility and no one at WordPress.org or WordPress.com can help. … Read more

Add menu to CMS page

Try below code ( with proper modifications if needed ) in your ‘header.php’ <?php if (has_nav_menu(‘primary_navigation’)) : wp_nav_menu([‘theme_location’ => ‘primary_navigation’, ‘menu_class’ => ‘nav’]); endif; ?> For more details try this link