Making the container wider

You’ll want to add some CSS to edit the max-width of the #main-outlet div… that would look something like this

#main-outlet {
  width: auto;
  max-width: 1010px; /* This makes the container as wide as the logo/header controls */ 
}

10 Likes