- This topic has 4 replies, 2 voices, and was last updated 4 years, 6 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- The topic ‘Submenu in two columns’ is closed to new replies.
Tagged: Submenu in two columns
Hello, I am using a submenu that has 14 items, and it is not fitting on the screen, not being able to see the rest of the items, I would like to divide this submenu into two columns.
In ‘Customize’ > ‘Additional CSS’, add this code:
#primary-menu ul {
min-width: 360px;
}
#primary-menu ul li {
width: 50%;
}
Thank you. It worked perfectly, but for mobile the second column does not appear all, can we adjust?
Change the CSS to this instead:
@media only screen and (min-width: 1025px) {
#primary-menu ul {
min-width: 360px;
}
#primary-menu ul li {
width: 50%;
}
}
Thank you very much, CONGRATULATIONS to the support of the theme, very efficient and fast. I will replicate this theme in two more projects that I need to develop.