[RSS Feed/News] How to hide an element at certain screen widths?

Status
Not open for further replies.

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:

<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;
  }

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom