Thread Starter
sp8596
(@sp8596)
Please advise
http://www.allianceproperties.mw
this is my website. I have a menu called Listing, in that menu there are 2 sub menus, To Let and For sale but there are 2 more sub menus is the To Let category which is not visible on the page
please let me know how to align the menus in center
Waiting for your instant response
Hi, @sp8596
You can change the position of the menu & some amount of margin of it using the custom CSS:
/*menu position CSS*/
.navbar .nav {
float: left !important;
margin: 4px 0px 0 0 !important;
}
/*menu position CSS*/
Let me know did it work!
Thanks
Thread Starter
sp8596
(@sp8596)
It is working but the website doesn’t look professional
Is there any way to change the Size of the box where the menu is written
Like i want to change the size of the box of To Let and For Sale Sub menus
Please advise if it can work
Hi, @sp8596
You can try with the below custom CSS:
.navbar-inner .dropdown-menu {
min-width: 180px;
}
Thanks