How to shrink and fit any logo in a fixed box

Well, since you’re using a background image in your thumbnail-image class, you’ll need to specify background-size and background-repeat rules.

Add this to your css:

.thumbnail-image {
    background-size: 100%;
    background-repeat: no-repeat;
}

Hope that helps.

Leave a Comment