Hi @calmo16,
You have a really long menu that is why there is an issue with responsive, you can use the following CSS to reduce the padding by a little. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
@media screen and (min-width: 1200px) and (max-width: 1280px) {
.clean-box-nav-menu a, .sidebar-header-right .widget_nav_menu a {
padding: 13px 15px;
}
}
@media screen and (min-width: 991px) and (max-width: 1201px) {
.clean-box-nav-menu a, .sidebar-header-right .widget_nav_menu a {
padding: 13px 10px;
}
}
And for putting the image in the middle, add the following CSS:
#fixed-header-top #logo-icon {
margin: 0 auto;
float: none;
display: block;
text-align: center;
}
#fixed-header-top #logo-icon img {
display: inline-block;
}
Regards,
Mahesh