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

    (@comprock)

    Using my own testimonials page, https://typo3vagabond.com/typo3-vagabond-testimonials/, as the example.

    Each shortcode testimonial is wrapped by a div using classes testimonialswidget_testimonial testimonialswidget_testimonial_list. As such, to increase spacing between testimonials, try…

    .testimonialswidget_testimonial_list {
    padding-bottom: 1em;
    }

    Making the citation line a different color is a little trickier. The reason being is that applying a color to .testimonialswidget_testimonial cite will change the entire citation line in the widget display as well. To only change the shortcode testimonial citation color, try…

    .testimonialswidget_testimonial_list cite {
    color: blue;
    }

    If you’re wanting to change only the source (URL/email address) color, then try.

    .testimonialswidget_testimonial_list cite .testimonialswidget_source  {
    color: purple;
    }

    Like wise, the author uses class testimonialswidget_author and join “, ” uses class testimonialswidget_join.

    Thread Starter davidstrand

    (@davidstrand)

    Thanks that helped!

    Plugin Contributor Michael Cannon

    (@comprock)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Testimonials Widget] Using Shortcode how can I add some seperation’ is closed to new replies.