Home › Forums › Basel support forum › Menu customization › Reply To: Menu customization
September 25, 2017 at 11:52 am
#20162
Bogdan Donovan
Keymaster
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.main-nav .menu > .menu-item {
vertical-align: middle;
}
.main-nav .menu > .menu-item > a {
max-width: 110px;
line-height: 20px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
text-align: center;
align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
header.act-scroll .main-nav .menu > li > a {
line-height: inherit;
}
Regards