Piotr Kunicki wrote:Hello,
Images are adjusted to the container, because of reponsive. Could you give me more details with direct URls? (here or via PM).
article figure.featured-image img {
width: auto;
}
Piotr Kunicki wrote:Hi,
It's ok, when you change the browsers's size image is adjusted. In this theme you should use images around 800px width (because it's also hover effect which scales up the image).
Of course you can use your original image size, by adding this code into override.cs file:
- Code: Select all
article figure.featured-image img {
width: auto;
}
in this case you should also remove the hover effect.
article figure.featured-image:hover img {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}