XenForo
Administrative
- Thread starter
- Admin
- #1
I have an HTML sidebar (navigation & banner ad) that I'm trying to hide at medium and smaller screen breaks.
Here's the code I'm trying to use, but it's not working:
In my PAGE_CONTAINER template I have this HTML:
Code:
In my extra.less file I have this:
Code:
ادامه مطلب...
Here's the code I'm trying to use, but it's not working:
In my PAGE_CONTAINER template I have this HTML:
Code:
<div class="narrowhide">this text should hide at medium width</div>In my extra.less file I have this:
Code:
Code:
div.narrowhide {
;
}
@media (min-width: (@xf-responsiveMedium)) {
div.narrowhide {
display: none;
}
ادامه مطلب...