• Hello, fellow wordpressers,
    I am creating a blog for a client, and I uploaded all her old posts from a blogger account.

    My new theme only allows for a max – width of 660px;

    Her photos look to be hosted on fliker,

    Her images break my layout, and when I tried to set the default limit and to 660px nothing changed.
    Is there a way to make sure all images are equal to or less than 660px, without going through her 100 posts and resize them all by hand?

    Any feedback would be greatly apperciated.
    Cheers,
    Tim

    p.s, the website to see what I am talking about is https://www.jesihaackweddingsblog.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter tim24mediumcom

    (@tim24mediumcom)

    Also I just noticed that some of the images are getting thinned out.
    Like instead of resizing, it gets taller…

    Any solution to this?
    The same for me on a move to a new theme

    Dunno if you can work with this, I use it to resize images from an external source that I can’t resize any other way

    .entry .posterous_autopost img {
             max-width: 200px;
             width: expression(this.width > 200 ? 200: true);
             max-height: 280px;
             height: expression(this.height > 280 ? 280: true);
             float: right;
             margin: 4px;
             }

    css expressions work on modern browsers…. you’d have to play around to make this fit your needs….

    Yes it worked!!
    I think the photos are being squashed a bit in height? It depends on the original measures?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Matching width of images to my new theme’ is closed to new replies.