Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Kerry

    (@bluenotes)

    Hello,

    Are you adding the attribute image_style to it as well?
    Example:
    [bne_testimonials_list image_style="circle"]

    Thread Starter vivianwlove

    (@vivianwlove)

    Hi Bluenotes,

    yep, I have add it to the shortcode but it doesn’t show up live on the website

    Plugin Author Kerry

    (@bluenotes)

    Do you have a link I can view to the page that has it?

    Thread Starter vivianwlove

    (@vivianwlove)

    yes – it’s at the bottom of the main page: http://rebrand.supportbyvivian.com/
    and the “love notes” subpage (http://rebrand.supportbyvivian.com/love-notes/)
    thanks!

    Plugin Author Kerry

    (@bluenotes)

    You’re overriding the plugin css styles from your theme’s style.css file starting on line 1890.

    This is what you have there:

    .bne-testimonial-featured-image,
    .bne-testimonial-featured-image.square,
    .bne-testimonial-featured-image.circle,
    .bne-testimonial-featured-image.flat-square,
    .bne-testimonial-featured-image.flat-circle {
        height: 170px !important;
        margin: 5px 20px 10px 0 !important;
        width: 170px !important;
    }
    
    .bne-testimonial-featured-image,
    .bne-testimonial-featured-image.square {
        border: 1px solid #ddd !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 10px !important;
        -moz-border-radius: 0 !important;
        -moz-box-shadow: none !important;
        -webkit-border-radius: 0 !important;
        -webkit-box-shadow: none !important;
    }
    

    You’re forcing a 0px border radius among other things.

    Thread Starter vivianwlove

    (@vivianwlove)

    thanks!

    How do I get them to be circles? even though that’s specified in the shortcode and through the widget settings

    Plugin Author Kerry

    (@bluenotes)

    You need to remove the css block I referenced above that you or someone else added to your theme’s style.css file. That CSS is overriding the default styles applied from the plugin. Until that is removed, the shortcode option telling it to be a circle won’t take affect because the CSS override is forcing a 0px border radius no matter what to the profile image.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Shape of photos does not change’ is closed to new replies.