Colt Sliva
asked 8 years ago

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!

3 Answers
DominicStaff
answered 8 years ago

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,

Colt Sliva
answered 8 years ago

Here is a screenshot of the issue. I can’t reproduce the issue in chrome, but it is happening in certain chrome environments.

![Alconlighting.com/blog](http://alconlighting.com/skin/frontend/shopper/default/images/AlcBlogSS.png "Large whitespace as if sidebar has been generated")

This screenshot was taken in safari. It seems to be common with the safari browser.

csliva
replied 8 years ago

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

dominic Staff
replied 8 years ago

You can add the following code to the style.css file:

@media (min-width: 1200px)
.span8 {
    width: 100%;
}
}

Hope this helps !

Colt Sliva
answered 8 years ago

I suppose that is a solution as long as I never intend to use the span 8 class

dominic Staff
replied 8 years ago

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,

Powered by DW Question & Answer Pro