
Originally Posted by
Tomikku
There seems to be some misunderstanding :D
On my blog there's an image in the post, 678px wide. Clicking it calls up lightbox to display full sized version.
What I would like is to make it easier for me. Make the full size image that automatically resizes to 678 px when posted, but goes full size after click.
You can *scale* images so that they fit your content width. That's as simple as a CSS rule:
Code:
#content img {
max-width: 678px;
height: auto;
} But you can't get *multiple sizes* of an external image within WordPress.
Lets say I have 20 pics i want to put on blog. With current setup, I need to make them at two widths, one 678px for displaying withing the blog post frame, and one at full width.
That really seems and is - a waste of time.
So Im looking for a better solution for this.
There IS a better solution: use WordPress Media Management to upload/attach images to posts, so that WordPress will automatically create all defined image sizes.