Hi,
After the recent upgrade to 3.1.1 the main content background color on our site with sidebar on the left, has suddenly “gone” and shows the same color as the sidebar.
A quick inspection with the developer toolbar reveals that the wrapping div that carries the main background color setting by class “main_color”, has collapsed to 0 height. This happens because the inner div class “container” is floated left now.
I’ve added
.container_wrap {
overflow: hidden;
}
to the custom CSS field to fix it.
Correction:
The style added to fix it, will now hide the secondary menu hover items behind the main content. Changed fix to:
.container_wrap {
float: left;
}
Correction:
The style added to fix it, will now hide the secondary menu hover items behind the main content. Changed fix to:
.container_wrap {
float: left;
}
Note: posting to these forums appears to be difficult. Each time when I hit Submit on a new post (not after editing an existing one apparently), I land on a blank page. Hitting refresh button will then result in a double post…