chuckhoupt / jekyll-apple-help

Easily create Apple Help-Books for your Mac OS X app using this Jekyll template and build system.
MIT License
188 stars 17 forks source link

Sidebar Collapse #3

Closed trafnar closed 9 years ago

trafnar commented 9 years ago

Apple's help books seem to have a sidebar that opens and closes with the toolbar button. The Jekyll help book hides the sidebar when the window gets small, but the toolbar button doesn't work. Is there a way to make it work?

trafnar commented 9 years ago

My workaround for this was to comment out the part of the CSS that hides the sidebar based on the width of the window.

// Minimal responsiveness

// @media all and (max-width:874px) {
//  body:not(.title-page) header.banner {
//         display: none;
//     }
//  main {
//      left: 0;
//      padding: 5% 5%;
//  }
// }