Having trouble with hidden-xs and visible-xs-* classes not working as expected. Even a simple code snippet like the following doesn't hide the content:
<div class="hidden-xs">
test test test
</div>
Even when scaling down my window to the smallest size, the content remains visible. I am using the LESS compiled version without any modifications to variables.less yet. Any suggestions on how to fix this issue?
On a related note, I attempted to use the "@media (min-width: @screen-sm-min)" media query in mystyles.less, which is imported into bootstrap.less. However, my pre-processor (koala) throws an error for the variable @screen-sm-min:
NameError: variable @screen-sm-min is undefined in C:\Users\Shawn\Dropbox\GPLndscapes wordpress\less\mystyles.less:18:19
17
18 @media (min-width: @screen-sm-min){
.navbar .navbar-nav {
Could it be an issue with my less setup or with koala itself?