Dw minion dosent natively support menus.. please how do i add a header menu
1 Answers
You can log in to Dashboard > Appearance > Widget, add the Custom Menu widget to the Top Sidebar then To change the top menu to horizontal on the Top Sidebar widget, you can log in to Dashboard > Appearance > Custom Code, Add the following code to the Header Code (Dashboard > Customize > Custom Code > Header Code):
<style>
.top-sidebar .widget_nav_menu a {
display: inline;
}
.top-sidebar .widget_nav_menu li {
display: inline;
}
.top-sidebar .widget_nav_menu ul {
display: inline;
}
.top-sidebar .widget_nav_menu .sub-menu li {
border-left: none;
}
.top-sidebar .widget_nav_menu .sub-menu li:before {
content: "";
}
</style>
Hope this helps !
I am attempting to do the same and this did not appear to do anything
You can log in to Dashboard > Customize > Navigation then select main nav and Enable Primary Navigation.
See the screenshot: http://prntscr.com/8bzx5n
Please login or Register to submit your answer