is there? and where? thnx!
Is there a WP Plugin which resizes oversized images from rss feeds to fit your layout
Collapse
X
-
Tags: None
-
You don't need a plugin. Just put this in your stylesheet under the class that your content gets posted:
img {
max-width: 500px;
}
So if the class that your content is posted in is called "content", it would look like this:
.content img {
max-width: 500px;
}
Obviously adjust 500px to whatever you want. If you need help finding it, send me an ICQ. -
jesus christ blunts, put the bong down
Comment
-
well, that works, but since it only adjusts width you will have some seriously fucked up images....every image is different too, so there is no full proof way of doing what you are doing in the css, something that processes images as they are being posted is the only solutionYou don't need a plugin. Just put this in your stylesheet under the class that your content gets posted:
img {
max-width: 500px;
}
So if the class that your content is posted in is called "content", it would look like this:
.content img {
max-width: 500px;
}
Obviously adjust 500px to whatever you want. If you need help finding it, send me an ICQ.Comment
-
So when I use this CSS
.content img {
max-width: 500px;
}
will that keep the aspect ratio of the image, or just smush it skinny?Comment
-
Comment



Comment