Hello sp8596,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer
.navbar .nav {
margin: 0px 102px 0 0 !important;
}
Hope this will helps you.
Thanks.
Thread Starter
sp8596
(@sp8596)
It worked but the submenu is not visible
is there anyway to change the size of the box where the sub menu is written?
Thread Starter
sp8596
(@sp8596)
It doesn’t look professional
it changed the menu position in pc as well i want all the sub menus to be visible properly
Hello sp8596,
This happens because of you had used float right in desktop.try below css code.
@media (max-width: 979px).navbar .nav{
float: none !important;
margin: 0px 102px 0 0 !important;
}
Hope this will help you.
thanks.