Hello,
Firstly, try going to Theme Options> Main Settings, and check that your logo spacing on the right and left are set to 0.
This will maximize the space in your header for the menu. If that is set to 0 and your still left without enough room, let me know when you add the menu back and I’ll provide some CSS to keep it on one line.
-Kevin
Adding this CSS in Theme Options> Advanced Settings should do the trick:
@media (min-width: 992px)
.kad-header-left {
width: 25%;
}
.kad-header-right {
width: 75%;
}
}
-Kevin
Thread Starter
Ellen
(@ejfgreen)
Thank you Kevin. The left and right settings are at 0. The css worked except the whole menu dropped down one line. Is there any way the logo and menu can be on one one? Thanks again for your help.
I missed a bracket within that CSS. Change to this and you’ll be set:
@media (min-width: 992px) {
.kad-header-left {
width: 25% !important;
}
.kad-header-right {
width: 75%;
}
}
-Kevin
Thread Starter
Ellen
(@ejfgreen)
That was it! Thanks Kevin! I looks great now.