Hi @fixers
The issue here is not with the responsiveness of the theme. You have it set to show a sidebar on the right, which it does correctly. Then you hide your sidebar asset at iPad size – this leaves the space which is the issue, and on mobile it is full width as it should be. This isn’t a problem with the theme, as it expects a sidebar there (which is there, just your calendar picker asset is hidden).
Best thing I can suggest to workaround this is to add some margin to the left on iPad portrait, try this custom css:
@media (min-width: 980px) and (max-width: 1026px) {
.page .has-right-sidebar .type-page.span8 {
margin-left: 170px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.page .has-right-sidebar .type-page.span8 {
margin-left: 140px;
}
}
– Ed