URL: http://getbootstrap.com/examples/dashboard/
Client: Safari on iPhone 5S, iOS 7.1.2 (can't seem to extract the safari version number, but should only be one for 7.1.2)
The sidebar is not visible on mobile.
Unsure if its intended or not, but for "mobile first" I would expect said content to be available somehow.
see the dashboard.css file
/* Hide for mobile, show later */
.sidebar {
display: none;
}
As the issue is still present in the example, should this ticket be kept open? The comment in the CSS seems to suggest the example was planned to be made work in mobile as well..
The sidebar is meant to be hidden on mobile.
Ok, thanks. For what it's worth, I second @marius00 that as Bootstrap introduces itself as a framework for "responsive, mobile first" projects, one might expect the example templates to work with mobile. Perhaps the desktop only examples at http://getbootstrap.com/getting-started/, like the dashboard example, could be labeled as such.
It's not desktop only, I just made the decision to hide the sidebar on mobile :). Maybe in v4 I'll tweak those.
Is there any way to make it visible? Maybe changing something in css file?
Quick fix is to add "col-xs-4" to the sidebar class declaration and "col-xs-8 col-xs-offset-4" to the main div.
Most helpful comment
Ok, thanks. For what it's worth, I second @marius00 that as Bootstrap introduces itself as a framework for "responsive, mobile first" projects, one might expect the example templates to work with mobile. Perhaps the desktop only examples at http://getbootstrap.com/getting-started/, like the dashboard example, could be labeled as such.