100% width to image
hi!
how i can change image class img.scale-with-grid, #Content img . i want my image to be width: 100%; , but if i change that img-scale-with-grid max-widht to just width it takes effect to every image.
i was trying to add extra class to custom css and put that class to muffin builder but that doesent work, any ideas ?
Comments
please send us url to page where you have images that you want to increase and we'll see if it is possible. As we know, images are already 100% width and we are not sure if this would be possible.
Thanks!
img.scale-with-grid,#Content img {
max-width: 100%;
height: auto;
to
img.scale-with-grid,#Content img {
width: 100%;
height: auto;
}
it works as it should.