• Resolved JGrizzLee

    (@jgrizzlee)


    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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }
    Thread Starter JGrizzLee

    (@jgrizzlee)

    Yep, that did the trick. Thanks for the response and solution =D

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Chaning Styling of Guillemets: "?" or "?"’ is closed to new replies.