• Resolved rbbramson

    (@rbbramson)


    I like this plugin but the images are displaying as a half of the circle only. Is there are size requirement for the images? Is there some other setting or requirement to make the circle display full image?

    The page I need help with: [log in to see the link]

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

    (@3qbik)

    Hey @rbbramson,

    sorry for the late reply!

    There is CSS on your site, that cuts off half the images:

    .entry-content {
        padding-bottom: 15px;
        display: block;
        overflow: hidden;
    }

    You would need to set overflow to visible here.

    If you can add custom CSS to your theme somewhere, just paste in this code:

    .entry-content {
        overflow: visible !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Image not displaying properly’ is closed to new replies.