• Resolved FUJ

    (@fuj)


    How can you scale image size proportionally on individual posts?

    Currently the theme adjusts the width, but has a set height value so images are skewed vertically.

    Example:
    Full-screen image is 1,200×643px
    Smaller browser width: Original 1,200×643 image is scaled to 600×643px

    I’d like for the height in the above example to shrink to ~321px, ie. proportionally scaled to match the new width size.

    Would really appreciate your feedback!! Thank you.

    http://wordpress.org/extend/themes/tanzaku/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Kurt

    (@highfxmedia)

    FUJ: How about a link to your site?

    Thread Starter FUJ

    (@fuj)

    stevekojima.com/dev2/

    also, i’ve noticed the load time is a little long.. but that’s a separate issue. thanks, sk

    Kurt

    (@highfxmedia)

    FUJ:

    change this:

    div.post-body p img,
    div.post-body p object {
    max-width: 100%;
    padding: 0;
    }

    to this:

    div.post-body p img,
    div.post-body p object {
    height: auto;
    max-width: 100%;
    padding: 0;
    }

    at line 283 of your CSS (style.css).

    Thread Starter FUJ

    (@fuj)

    image issue resolved per the simple solution above. thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: tanzaku] RESIZE Images PROPORTIONALLY’ is closed to new replies.