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

    (@comprock)

    Thank you for providing the URL to review. That makes debugging so much faster and easier.

    Please note that quote handling changed in the 2.7.X updates. Read FAQ 13 for the new no quotes CSS.

    Thread Starter clarelauwerys

    (@clarelauwerys)

    I’m clearly missing something. I read FAQ13 before posting

    This is the additional code I’ve added to my css file to try to remove the quotes and successfully change the color

    /* Begin Additional CSS Styles */

    .testimonialswidget_testimonial .testimonialswidget_open_quote:before, .testimonialswidget_testimonial .testimonialswidget_close_quote:after {
    content: none;
    }
    .testimonialswidget_testimonial q {
    color: #a52ea1;
    }

    .testimonialswidget_testimonial cite {
    color: #aa8cc0;
    }

    /* End Additional CSS Styles */

    I def have the most upto date version of the plugin as when I logged on today it told me there was an update available

    Plugin Contributor Michael Cannon

    (@comprock)

    For some reason, my dev tools is saying you need to use CSS class chain .testimonialswidget_testimonial .testimonialswidget_open_quote::before and .testimonialswidget_testimonial .testimonialswidget_close_quote::after.

    Worst case, try

    .testimonialswidget_open_quote, .testimonialswidget_close_quote {
      display: none;
    }
    Thread Starter clarelauwerys

    (@clarelauwerys)

    Thanks – the worst case fixed it and now my client’s testimonials look beautiful

    Plugin Contributor Michael Cannon

    (@comprock)

    Not a problem, I’ve updated FAQ 13 as well.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Quote marks in testimonials (yep another one!)’ is closed to new replies.