I am using the W3CSS stylesheet in a page to display a menu using ul lists. It works fine but it switches to the minimal style way too soon for my needs.
There are 3 media queries involved in this at lines 158, 159 and 160 that change when the viewport size is equal or less than 600px:
@media screen and (max-width:600px){.w3-topnav a{display:block}.w3-navbar li:not(.w3-opennav){float:none;width:100%!important}.w3-navbar li.w3-right{float:none!important}}
@media screen and (max-width:600px){.w3-topnav .w3-dropdown-hover .w3-dropdown-content,.w3-navbar .w3-dropdown-click .w3-dropdown-content,.w3-navbar .w3-dropdown-hover .w3-dropdown-content{position:relative}}
@media screen and (max-width:600px){.w3-topnav,.w3-navbar{text-align:center}}
I want it to switch at 350px but I'd like to avoid editing the w3.css file every time I need to apply any modification, also because I'm using the file in other pages as well and I need the default behavior there.
Is there any way to mute the w3.css media queries from any CSS of mine? Javascript-based solutions are accepted, but if possible I want to avoid these.
Thank you very much in advance
EDIT
I'm not sure I was clear enough in my request, so I'll try to redefine it here.
I want to mute those media queries from the w3.css file, so I can override them in my CSS files using max-width: 350px instead of 600px.