You could set a width for the header widgets.
Add this on Frontier Options -> Custom CSS
.widget-header {
width: 65%;
}
I’ve run into an oddity with the new theme update
Now a portion of the logo image shows up covering some of the menu.
website
This is the custom CSS I have saved in the Frontier Options:
#header-logo {display: inline-block;}
#header-logo, #header-logo img {
max-width: 100%;
float: left;
margin-bottom: -10px;
}
.widget-header {
width: 65%;
margin-top: -10px;
margin-bottom: -10px;
}
body {
background-color: #505050;
color: #303030;
font-family: "Arial", Sans-serif, Cursive;
font-size: 13px;
line-height: 1.5;
}
The negative margin property you’ve added above is causing the logo to go way down.
margin-bottom: -10px;