JGrizzLee
Member
Posted 1 year ago #
I was wondering how you can edit the styling of the guillemet symbols. The symbol "»" looks very small and isn't vertically aligned to the text on my site. Is there a way I can directly edit the size and/or alignment of the guillemets or specify in my stylesheet to use another font-family just for the guillemets?
Can you give an example, or maybe a link to an image of what you'd like?
Yes, you can certainly target the guillemets with another font-family using the <span> tag:
<p>Read more <span class="guillemet">»</span></p>
.guillemet {
font-family: Arial, sans-serif;
}
JGrizzLee
Member
Posted 1 year ago #
Yep, that did the trick. Thanks for the response and solution =D