Hi,
I’m trying to define custom css style for responsive version, to adapt my grid page to mobile devices.
But, while other properties are taken under consideration in the whole site, nothing related to Dukapress works.
For example, the actual grid page is overflowing, so I would like to change the float. But my style.css doesn’t work. And I also changed dpsc-basic.css (the Dukapress stylesheet), by implementing this function :
@media all and (max-width: 720px) {
.dpsc_grid_product {
border: 1px solid;
float: none;
margin: 0 47px 45px 43px;
padding: 10px 0 0;
text-align: center;
width: 203px;
}
}
But it’s not taken. When I inspect the code through firefox, this is the original class which works.
Anyone knows how to solve this issue ?
Thanks for your help 😉