Hello,Hello, I am working on transitioning my site from the Dali theme to the Raphael theme, but can't find where the options are to create a rich sub-menu from the main navigation. How do I go about building that?
Second question, how can I center the main nav (and utility nav)?
View attachment 9228
Not everything is in the guide. You need to add CSS codes to get what you want.how can I center or justify the menu items like in the theme demo? The menu items spread out across the full margins of the site instead of being left-justified. I want to do the same.
Hello,
You can manage your menus in WP => Appearance => Menus. Add your product categories and check Category menu in Display location. You can learn more in this guide. These are the only category-related settings.
I added that to the CSS part of Customization >> Head and nothing changed. Any other ideas?Hello,
Please add these pieces of code to Customization => Head:
For Top Menu:
.desktop-top-panel .top-right, .desktop-top-panel>div {
justify-content: center;
}
For the Main menu bar:
.categories-menu-line{
display: flex;
justify-content: center;
}
For the drop-down menu:
.box-menu .menu>ul>li {
text-align: center;
}
Hello,I added that to the CSS part of Customization >> Head and nothing changed. Any other ideas?
Hello Zbigniew,Did anyone find a solution for it ?