• Resolved robwheel

    (@robwheel)


    I’ve been trying to find a work around for this.
    Issue: When updating to version 1.0.6 of bootstrap basic, I’ve ran into a problem when using in a loop, the thumbnail picture gets larger and larger.

    the_post_thumbnail(‘thumbnail’, array( ‘class’ => ‘aligncenter’ ));

    Here are the two comparisons:
    1.0.5 version:
    https://mineralbodyworks.com/clean/
    1.0.6 version:
    https://mineralbodyworks.com/new_ver/

Viewing 1 replies (of 1 total)
  • Theme Author vee

    (@okvee)

    Hi @robwheel

    I’m sorry about this. First, I must say that I was removed the automatic image responsive class from css file. It can break the “in-line” images that’s why I have to remove it.
    In Bootstrap v.3 you can set responsive image by add class=”img-responsive” to the <img> tag. That should help to display your image size in the block element correctly.
    Or
    You can add these css in some of your css file.
    `
    img {
    display: block;
    height: auto;
    max-width: 100%;
    }
    `
    But as I said. All images can’t be in-line style.

    If this can be fixed, please leave your reply. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Thumbnail, 1.0.6 issue?’ is closed to new replies.