visible-xs-block and visible-sm-block bootstrap 3.3.4 not working -
using bs 3.3.4 i've tried hidden-xs-block , hidden-sm-block on divs still display on iphone 3, iphone 4. way work new class display:none on media query prefer using built in functionality. applied class directly in <div class="panel panel-default hidden-sm-block ">
hidden-xs-block see: http://howlingwolfmedia.com/dev/jrmasonry_btstrp/portfolio.html right side panel hidden using custom class turned off see i'm talking about.
see orginal code there hidden-x , visible-x without -block classes available.
e.g.
@media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) , (max-width: 991px) { .hidden-sm { display: none !important; } }
Comments
Post a Comment