RacoonOnMoon
RacoonOnMoon

Reputation: 1586

How to change twentyseventeen Responsive Navigation Breakpoint

I am using the twentysenteen wordpress theme. I want to change the Breakpoint of the desktop menu to the responsive menu. Is there any way that you can change it a clean way. I only found some fishy Css solutions in the web.

Thanks in advance

Upvotes: 1

Views: 980

Answers (1)

RacoonOnMoon
RacoonOnMoon

Reputation: 1586

Okay i found a solution a pretty clean solution. There are two basic things you need to change.

First display the toggle button

.js .menu-toggle,
.js .dropdown-toggle {
  display: block;
}

and secondly just hide the menu ul

.js .main-navigation ul, .js .main-navigation ul ul, .js .main-navigation > div > ul {
 display: none;
}

than add some styles like display: block the li

Upvotes: 1

Related Questions