Hi! I have the following problem.
Mobile joomla automatically resize images larger than the container.
That's fine for almost all the images of the site.
But in the homepage I'd like my images not to be resized.
I tried to put a class:
<img class="homebuttons" src.... >
img.homebuttons {
width: 150px !important;
height: 40px !important;
}
It obviously works, but the problem is that MJ creates smaller images anyway, and then it assigns the same class.
The result is that my image is blurred...
how can I fix?