Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Getting rid of excess white space Reply To: Getting rid of excess white space

#184177
Alen
Participant

.container is a generic class name. Its most likely used in other areas of your site. It’s used to contain content so it can conform to some sort of grid. It provides a wrapper with predictable results.

You could add another class that overrides the width.

So in your HTML

class='container container-full'


.container-full {
    width:100%;
}