• Resolved Deveshdd

    (@deveshdd)


    I needed to remove the blockquote image on the left of every testimonial so I used:

    .testimonialswidget_testimonial blockquote {
    background: none;
    }

    it removed the blockquote but now the testimonial text has some blank left margin How do I get rid of that?

    I tried the following css but it didn’t help:

    .testimonials-widget-testimonial {
    margin-left:0px;
    }

    http://ww.wp.xz.cn/extend/plugins/testimonials-widget/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Michael Cannon

    (@comprock)

    What’s the URL?

    Also, these are freely supported forums, be sure to tell those who help you thanks and donate to them once in a while.

    Thread Starter Deveshdd

    (@deveshdd)

    I’m working on this demo site… http://webworxworld.com/client-demo/ you can check the issue on pages with sidebar

    Plugin Contributor Michael Cannon

    (@comprock)

    When asking for help from people, please make it easy on them to help, especially free help. As an example, please provide a specific URL and where to look to view problems.

    The problem is your theme’s style.css file at line 1232 and 1237 regarding blockquote padding-left and margins. Fix those and you’ll be fine.

    However, I would first update your Testimonials Widget plugin to 2.12.0 and then add new CSS like the following to your style.css file.

    .testimonials-widget-testimonial blockquote {
    padding-left: 0;
    margin-top: 0;
    }

    Play with above as needed.

    Thread Starter Deveshdd

    (@deveshdd)

    Thanks Michael. That worked. Appreciate your time and help!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘removing blockquote & left margin’ is closed to new replies.