Home › Forums › CSS › Getting rid of excess white space › Reply To: Getting rid of excess white space
September 22, 2014 at 9:22 pm
#184177
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%;
}