Why is my hamburger menu not shown? [closed]

The hamburger is shown with ionicons as an after element. You have conflicting CSS in your theme. This (specifically, the content: ” “;) CSS: .entry:before, .entry-content:before, .nav-primary:before, .site-container:before, .site-header:before, .site-inner:before, .wrap:before { content: ” “; display: table; } is overwriting the hamburger menu’s CSS @media only screen and (max-width: 800px){ .menu-toggle:before, .menu-toggle.activated:before { color: #1e1e1e; … Read more

Site pages show the page title under navigation bar

Your theme (or child theme) is likely using page.php as the default page template. This file likely contains a call to the WP function the_title() which is generating the visible page title. Multiple options to modify this. Assuming you are using a theme which will have updates available, your changes should be made using the … Read more

How can i make two menu walkers with logo in center?

If you’re looking for something like this: It’s actually not as complicated as using multiple Nav Walkers and can all be achieved with CSS. #masthead{ background:#B81237; padding:0.1rem 0 0 0; box-shadow:#999 0 2px 6px; box-shadow:rgba(0,0,0,0.2) 0 2px 6px; } .site-logo{ width:100%; margin:0 auto; padding:0; text-align:center; } .site-logo img{ position:relative; z-index:10; width:15%; margin:0.1rem auto -9rem auto; … Read more

Menu in widget with yahoo style

Check your site source to see what classes do your category links have on them, then style these classes with CSS, like: .category-5 a{ background:transparent url(images/…) no-repeat left top; padding-left: 25px; }