I'm trying to override a css class to improve the site when looking in a small screen. Here is the e.g.
My file:
@media only screen and (max-width: 480px)
body.layout-mode-responsive .fp-roksprocket-showcase.rt-block {
margin: 0;
}
Core file:
.fp-roksprocket-showcase.rt-block {
margin: 0;
padding: 100px 0 80px 0;
}
This way, the DIV that I wanna override, is getting the padding of the Core file... To be the way that I want, I couldn't put the padding style on my file. I need to "remove" this style!
How can I make this?