Exhibit builder- remove navigation sidebar?

I am building a single-page exhibit using a gallery layout. Consequently, it's not necessary for the exhibit to have a sidebar with the page navigation. I am running Omeka 2.3 and Exhibit Builder 3.2, both with the Berlin theme.

Mysteriously, when I first created the exhibit there was no sidebar but then in appeared and now I can't get rid of it. I have been able to get rid of the content of the sidebar by modifying the style.css file in the theme folder, but that leaves me with a blank column on the right side of the page. I'm not overly familiar with css or php so I'm wary of doing anything too drastic.

Can anyone help me with this? Is there a (relatively straightforward) way of getting rid of the navigation bar and having the exhibit gallery page take up the full width of the page?

Thanks!

Sara

There's a block of styles starting at line 1906 of style.css. Wherever you see a width defined, delete or comment it out. I've commented it out here so you can see which ones more easily.

.exhibits #content > h1:first-of-type,
#exhibit-blocks,
#exhibit-page-navigation,
.exhibits.summary #primary {
  float: left;
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
  /* width: 700px; */
  margin-left: 0;
  padding-right: 20px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .exhibits #content > h1:first-of-type,
  #exhibit-blocks,
  #exhibit-page-navigation,
  .exhibits.summary #primary {
    margin: 0;
  }
}

/* @media only screen and (min-width: 768px) and (max-width: 959px) {
  .exhibits #content > h1:first-of-type,
  #exhibit-blocks,
  #exhibit-page-navigation,
  .exhibits.summary #primary {
    width: 556px;
  }
}
@media only screen and (max-width: 767px) {
  .exhibits #content > h1:first-of-type,
  #exhibit-blocks,
  #exhibit-page-navigation,
  .exhibits.summary #primary {
    width: 300px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .exhibits #content > h1:first-of-type,
  #exhibit-blocks,
  #exhibit-page-navigation,
  .exhibits.summary #primary {
    width: 420px;
  }
}*/

All of those styles are defining widths for different screen sizes. If you get rid of the places where they're specified, that main content block should default to the full-width.

That seems to have done the trick. Thanks very much!