techtoll
Member
Posted 5 months ago #
I have a page at Download Bing wallpapers where i have inserted an image of size 1003X516. But the resizing i think is not in the proper ration. Hence when i check its responsiveness only the width of the image changes. Height remains constant.
Kindly help.
In your Custom CSS area of the dashboard, add a max-height of 100% to that image;
.entry-content img, .comment-content img, .widget img {
max-height: 100%;
}
techtoll
Member
Posted 5 months ago #
Will it affect site's responsiveness?
Thanks BTW
techtoll
Member
Posted 5 months ago #
The image still looks more stretched in terms of height.
The image still looks more stretched in terms of height.
That's because the image you uploaded is bigger than the content width.
You can either upload a re-sized image or add: height: auto;
techtoll
Member
Posted 5 months ago #
Thank you.
height: auto;
worked.