Hello,
I am trying to remove the hyphen located before the Author name. I was able to accomplish this on the comma located after the auther name using the following code:
.testimonialswidget_testimonial .testimonialswidget_join {
display: none !important;
}
However similar code doesn't seem to affect the hyphen:
.testimonialswidget_testimonial cite:before {
display: none !important;
}
I also noticed in the source code that there doesn't seem to be a CSS applied to the hyphen like there is with the comma.
<cite>
"— " <!------ No span class -->
<span class="testimonialswidget_author">Author Name</span>
<span class="testimonialswidget_join">, </span>
<span class="testimonialswidget_source">Source Text</span>
</cite>
I am using a child theme with a separate style.css to override the plugin's native CSS stylings.
Thanks