Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Increase spacing between testimonials

Image RemovedImage Added


Code Block
.testimonials-widget-testimonial.list,
.testimonials-widget-testimonial.single {
	margin-bottom: 4em;
}

...

Remove Blockquote Left Border

Image RemovedImage Added

 

.testimonials-widget-testimonial blockquote {
  border-left: none;
}

...

Using Inspect Element to see `blockquote` properties

Image RemovedImage Added

 

 

Inline testing the change

Image RemovedImage Added

 

CSS that probably fixes the width issue

.testimonials-widget-testimonial blockquote {
	width: initial;
}

Vertical Review Stars

Image RemovedImage Added

 

The most common issue is that a theme has CSS which overrides Testimonials own that sets `display: inline;`. You just need to target the vertical stars and apply `display: inline;` like the following default.

Image RemovedImage Added

 

CSS that probably fixes the vertical ratings issue

...

CSS for changing read more link color

Image RemovedImage Added

 

 

.testimonials-widget-testimonial a.more-link {
	color: red;
}

...

Page Properties
hiddentrue


Related issues