I\'m using Twitter Bootstrap 3 to create a mobile-ready website. On a large screen, I\'d like two items (#1 and #2 in my sketch) to be in a sidebar to the left, while the la
Try to float to the right: (see: http://bootply.com/78158)
CSS:
.floatright{float:right;} @media (max-width: 768px) { .floatright{float:none;} }
HTML:
1 3 2