Reputation: 39
I'm using Slidebars as extension to create off-canvas menus for my site. Custom width can be set using data-sb-width
attribute. I have set it to 370px like this:
<div class="sb-slidebar sb-left sb-width-custom" data-sb-width="370px"></div>
On mobile i need to change it to 280px, but I don't know if this is possible with CSS media queries. Help would be needed.
Upvotes: 1
Views: 2604
Reputation: 17720
As this is an HTML attribute and not a CSS style, you won't be able to directly use CSS media queries for this.
I see several options to explore:
data-sb-width
using Javascript or jQuery (before you setup the slide bars)Upvotes: 1