Viewing 1 replies (of 1 total)
  • Plugin Author webtechideas

    (@webtechideas)

    This is because you have forcefully set the height and width of images. In your style.css, following codes are causing problem.

    /**
     * Make sure images with WordPress-added height and width attributes are
     * scaled correctly.
     */
    
    .comment-content img[height],
    .entry-content img,
    .entry-summary img,
    img[class*="align"],
    img[class*="wp-image-"],
    img[class*="attachment-"],
    #site-header img {
    	height: 101px;
    	width: auto;
    }

    and

    /* Responsive images. Fluid images for posts, comments, and widgets */
    
    .comment-content img,
    .entry-content img,
    .entry-summary img,
    #site-header img,
    .widget img,
    .wp-caption {
    	max-width: 100%;
    }

    If you remove these or set correctly, then the problem will be solved.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin creating a block of thumbs up/thumbs down’ is closed to new replies.