You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know why this project has so few feedbacks, I've been using it for years (even now in VueJS projects, it's even simpler to load thanks to @load directive!) and it's amazingly useful ; SEO needs this for so many images. So I'll start by saying thanks for the work!
Just a quick fix suggestion in the CSS ; if you set width and height attributes on your image, the image ratio will be deformed (at least in "height" ratio display).
Hi!
I don't know why this project has so few feedbacks, I've been using it for years (even now in VueJS projects, it's even simpler to load thanks to @load directive!) and it's amazingly useful ; SEO needs this for so many images. So I'll start by saying thanks for the work!
Just a quick fix suggestion in the CSS ; if you set width and height attributes on your image, the image ratio will be deformed (at least in "height" ratio display).
I fixed this that way in local:
.height.greenishCover img {
display:inline;
height:100%;
width:auto; <-------
margin-top:0 !important;
}
.width.greenishCover img {
display:block;
width:100%; <-------
height:auto;
}
Only flaw I found in years! 👍
Cheers!
The text was updated successfully, but these errors were encountered: