Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How are the Twitter Bootstrap responsive utility classes such as .visible-desktop supposed to be used. I have tried to follow the example on the Bootstrap web site,

<span class="visible-desktop">✔ Desktop</span>

on an image like this,

<span class="visible-desktop">
  <img src="<%=(image_path('green.jpg'))%>"></img>
</span>

but the image remains when I shrink the browser window to tablet or phone size.

share|improve this question
Are you including the bootstrap-responsive.css stylesheet "after" the bootstrap.css stylesheet? or at all? – Andres Ilich May 7 '12 at 19:55
Yes, I have the stylesheets included correctly, and other responsive features are working. – John Cochran May 8 '12 at 3:41
Can you post your setup of how you are using it over at jsfiddle.net? That class is being explicitly hidden with the !important flag and should overwrite any other display properties in that element, so there must be something else. – Andres Ilich May 8 '12 at 11:14
I am using the Ruby Gem bootstrap-sass version 2.0.2 instead of the official bootstrap distribution, and going through the code I noticed that the responsive utility classes do not have the !important flag. I assume this corresponds to bootstrap 2.0.2. Does anyone know if this was a problem that was corrected in bootstrap 2.0.3? – John Cochran May 8 '12 at 18:46
The flag is available in the bootstrap-responsive.css ver2.0.3 stylesheet, twitter.github.com/bootstrap/assets/css/… – Andres Ilich May 8 '12 at 18:51

3 Answers

This works for me -

Try adding .hidden-phone and .hidden-tablet to your span class, like so:

<span class="visible-desktop hidden-phone hidden-tablet"> </span>
share|improve this answer
I would try updating Bootstrap before trying something like this. .visible-destop class is supposed to do the job of the other two classes mentioned in this answer, so in practice it should either be .visible-destop by itself or .hidden-phone and .hidden-tablet together – Wallace Sidhrée Dec 5 '12 at 14:33

Did you copy/paste your code? Because you have a typo...

<span class="visable-desktop">

should be

<span class="visible-desktop">
share|improve this answer
I corrected the typo, but it still does not work. – John Cochran May 7 '12 at 19:42

the class .visible-desktop shouldn't be showing on tablets or phones if all the dependencies are in place and referred to correctly (CSS files, etc).

On this section on Bootstrap's own introductory documentation you can see a live example: http://twitter.github.com/bootstrap/scaffolding.html#responsive

Try applying the class on a very simple tag and see if it works at all first. If it doesn't it won't work on any other tag. :)

Good luck!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.