0

I am using Bootstrap as CSS framework for my blog http://www.lowcoupling.com The problem is I can't see how to avoid the two columns of my to scale when reducing the width of the browser/device. I want to avoid it because of the vertical ads I have on the right side which I want to be fix in size and position. Is there any way to do this? In case this was not possible I would rather hide that column, and its content, instead of stacking it down. Is this possible?

1
  • it's possible to hide it, take a look at the media queries
    – Pascamel
    Commented Aug 9, 2013 at 13:50

1 Answer 1

1

Twitter Bootstrap uses a responsive design, so that as you hit certain dimension breakpoints as you resize your browser, different styles will be applied. When you narrow your browser to the point where it is optimized for tablets, you'll get a stacking behaviour.

If you add a custom class to the column, you could hide it instead of having it stack by adding this to your stylesheet:

@media screen and (max-width: 768px) {
  .my-class{
    display:none;
   }
}

As an alternative, you could also try removing all the media queries from bootstrap.css. There is a customization tool that can help you with this, but it is currently down while Bootstrap 3.0 is finalized.

1
  • thank you I have used the hidden-md and hidden-sm classes which are already defined in bootstrap Commented Aug 9, 2013 at 14:48

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.