Css override does not affect

May 2014 WordPress Theme
GK User
Mon May 25, 2015 10:57 am
Hi, please can help me? I am using custom css plugin in order to dictate custom css...
but it seems that @media query does not affect...

i putted this media query:


@media only screen and (min-device-width: 1025px) { div#prdctfltr_woocommerce.prdctfltr_woocommerce.woocommerce.pf_select.prdctfltr_always_visible.prdctfltr_click_filter.prdctfltr_maxheight.prdctfltr_scroll_active.pf_mod_multirow{display:none !important;}
}

In order to remove from desktop the filter section that u can find at the top of this page http://www.brillabijou.com/categoria-prodotto/anelli/

but it seems to do not affect the page :/
User avatar
Gold Boarder

GK User
Tue May 26, 2015 8:50 am
I can't see this code in your custom.css file, and your code is not correct, try to use this one:
Code: Select all
@media (min-width: 1025px) {
   #woocommerce_price_filter-2 {
      display: none!important;
   }
}
User avatar
Moderator


cron