Your screen is small, or low resolution, or you window has been resized so that it is not full screen.
Microcosm uses a responsive layout, and whilst the full functionality is offered in every size, the way this functionality is accessed differs depending on the size of the window accessing Microcosm.
The code:
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) { ... }
/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }
/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }
The view you are seeing is the tablet one, it's for windows/devices with a display area between 768 and 992 pixels wide.
Stretch the window wider than 992px to see the desktop version, and view the site in a window above 1200px to see the expanded desktop version.
Your screen is small, or low resolution, or you window has been resized so that it is not full screen.
Microcosm uses a responsive layout, and whilst the full functionality is offered in every size, the way this functionality is accessed differs depending on the size of the window accessing Microcosm.
The code:
The view you are seeing is the tablet one, it's for windows/devices with a display area between 768 and 992 pixels wide.
Stretch the window wider than 992px to see the desktop version, and view the site in a window above 1200px to see the expanded desktop version.