Making the container wider

@awesomerobot I can’t seem to figure out the right way to make the container a bit wider (as wide as the default discourse theme) Imgur: The magic of the Internet

Any suggestions?

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

Works fine! Thank you!

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.