Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use responsive features of bootstrap 2.0

I'm using bootstrap 2.0 from twitter and unsure how to make it responsive.

  • How can I remove elements when in mobile/small screen mode?
  • How can I replace elements (i.e replace a big picture with a smaller one)?
  • Change a <h2> to be <h5>? etc.
like image 776
raklos Avatar asked Feb 04 '12 18:02

raklos


People also ask

Is Bootstrap used for responsive?

Bootstrap includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes predefined classes for easy layout options, as well as powerful mixins for generating more semantic layouts.

What is responsive Bootstrap website?

Bootstrap is a popular front-end framework for web development. It contains pre-built components and design elements to style HTML content. Modern browsers such as Chrome, Firefox, Opera, Safari, and Internet Explorer support Bootstrap. Bootstrap includes a responsive grid system for varying layouts.

What is scaffolding in Bootstrap?

Scaffold is a modern and fresh HTML website template built with bootstrap framework. It's awesome and creative responsive HTML5 template created for business, corporate, portfolio, startup and agency websites. It is a very simple, clean and professionally for showcasing your work or services.


2 Answers

Hiding Elements

You can hide elements with:

display: none; visibility: hidden; 

Hopefully you're using LESS or SASS so you can just specify:

@mixin hidden {   display: none;   visibility: hidden; } 

And then easily mix it in when necessary:

footer {   @include hidden; } 

Just apply them to any selector in the relevant media query. Also, understand that media queries cascade onto smaller media queries. If you hide an element in a wide media query (tablet sized), then the element will remain hidden as the website shrinks.

Replacing Images

Bootstrap doesn't offer image resizing as the screen shrinks, but you can manually change the dimensions of images with CSS in media queries.

But a particular solution I like is from this blog post: http://unstoppablerobotninja.com/entry/fluid-images/

/* You could instead use ".flexible" and give class="flexible" only to     images you want to have this property */ img {    max-width: 100%; } 

Now images will only appear in their full dimensions if they don't exceed their parent container, but they'll shrink fluidly as their parent element (like the <div> they're in) shrinks.

Here's a demo: http://unstoppablerobotninja.com/demos/resize/

To actually replace images, you could swap the background image with CSS. If .logo has background: url("logo.png");, then you can just specify a new background image in a media query with .logo { background: url("small-logo.png");

Change h2 to h5

If this is because you want to change the size of the heading, don't do this. H2 has semantic value: It's not as important as H1 and more important than H3.

Instead, just specify new sizes for your h1-h6 elements in media queries as your website gets smaller.

@media (max-width: 480px) {   h1,   h2,   h3,   h4,   h5,   h6 {     font-size: 80%;   } } 
like image 86
danneu Avatar answered Sep 28 '22 11:09

danneu


I've been playing with the responsive parts of bootstrap for the last few days, take a look at /less/responsive.less to get an idea of how you can utilize the responsive features of bootstrap.

You basically look at the browser's width/height to determine which css properties to apply to the page. So, for example if you want to change h2 when the user is using a smaller device, you would do something like this:

@media (max-width: 480px) {     h2 { font-size: 15px; } } 

You can do this with any style you want to affect when the size of the screen changes.

You can replace some elements by utilizing css replacement methods and then just have different styles affect things at different widths. Or you could use jquery or maybe response.js to do it. I'm still playing with this part of it.

like image 39
notzach Avatar answered Sep 28 '22 10:09

notzach