J p
asked 10 years ago

In DW Minion, adding the Custom Menu widget to the Top Sidebar results in the menu appearing vertically at the top of the page instead of horizontally. Is there any way to fix this?

1 Answers
DominicStaff
answered 10 years ago

Hello J ! 
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: 

<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 !

Powered by DW Question & Answer Pro