Site logo

Archived topic

How to Show Navigation Menu ?

10 replies · Started by Fajri on December 17, 2019

Viewing posts 1–11 of 11

Hi, i've got some problem with my site.

I can't show menu navigation on my site.

And then, tell me how to remove link credit on footer

Hi there,

can you check:

1. You have assigned a Menu to the Primary Navigation locoation.
2. In Customizer > Layout > Primary Navigation you have a location set to display the navigation.

Hi there,

You're using the Slideout site, which uses a different header.

To remove that, go into Customize > Additional CSS and remove this first chunk of CSS:

/* Side menu CSS */

@media (min-width: 769px) {
	body {
		padding-left: 60px;
	}
}

#site-navigation {
	position: fixed;
	left: 0;
	min-height: 100vh;
	max-width: 60px;
	overflow: hidden;
}

#content {
	padding: 40px;
}

#main,
.sidebar > .inside-right-sidebar,
.sidebar > .inside-left-sidebar{
	margin-top: 0;
	margin-bottom: 0;
}

#site-navigation .main-nav > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.admin-bar #site-navigation .main-nav > ul {
	min-height: calc(100vh - 32px);
}

.slideout-toggle {
	-webkit-box-ordinal-group: -9;
	-ms-flex-order: -10;
	order: -10;
}

#site-navigation .rotate {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-bottom: auto;
	white-space: nowrap;
}

@media (max-width: 768px) {
	#site-navigation .menu-toggle {
		display: none;
	}
}

.site-footer {
  padding: 0 40px;
	box-sizing: border-box;
}

That should bring it back to normal :)

What if you do this?:

#site-navigation .inside-navigation {
    max-width: 700px;
}

Hi there,

you would enable the Navigation as Header option in Customizer > Layout > Header

This archived topic is closed to new replies.