changing how items in a sub menu are displayed
-
I have a sub menu for one of the items in my main navigation menu. At the moment the submenu items appear in a horizontal line from right to left. I cannot find out how to change this so the submenu items open in a vertical line. I am using the theme 2024
The blog I need help with is: (visible only to logged in users)
-
You can change the submenu layout to vertical by adding this CSS to your theme’s Customizer or style.css file:
.sub-menu {
display: block;
}
.sub-menu li {
display: block;
}I also fixed this for my website. you can check put https://rivercity.media/
- The topic ‘changing how items in a sub menu are displayed’ is closed to new replies.