We’ve got an issue where the entire site is loading with span8, leaving a span4 sized whitespace.
The body has the class "right-sidebar". We don’t want a right sidebar on every page!
WordPress was just updated to 4.3 so we’re wondering if that’s the issue.
Thanks!
Hi,
I have checked your site but I can not find your page or your issue mentioned here. Please send me a screenshot or a link go to your issue.
Regards,
Here is a screenshot of the issue. I can’t reproduce the issue in chrome, but it is happening in certain chrome environments.

This screenshot was taken in safari. It seems to be common with the safari browser.
I wanted to follow up with more information. I’m able to recreate the issue when I navigate to the page as https://www.alconlighting.com/blog
The page renders normally when you navigate to http://www.alconlighting.com/blog/
The key difference is secure and insecure domain
You can add the following code to the style.css file:
@media (min-width: 1200px)
.span8 {
width: 100%;
}
}
Hope this helps !
I suppose that is a solution as long as I never intend to use the span 8 class
Also, you can edit span8 and use span12 in the index.php
file or use the following code:
@media (min-width: 1200px) {
.site-content {
width: 100%;
}
}
Regards,
Please login or Register to submit your answer