@Kim:
1. You have choose Full Width menu site and want to make it content width. It’s strange. You can the following css in “Appearance => Theme Options => Custom CSS” box:
#header-menu #access { background-color: #fff; }
#header-menu .menu-header-container { background-color: #e9e7e7; }
2. You need to replace the following css from your Custom CSS box:
@media screen and (min-width: 941px) {
#logo-wrap { width: 68%; }
#sidebar-header-right { width:20%; }
}
To this css:
@media screen and (min-width: 941px) {
#logo-wrap { width: 68%; }
#sidebar-header-right { width: 300px; }
}
3. You need to replace the following css from your Custom CSS box:
#secondary .widget,
#third-sidebar .widget {
margin-bottom: 0px;
padding-bottom: 0px;
}
To this css:
#secondary .widget,
#third-sidebar .widget {
border: 1px solid #e9e7e7;
}