Archived topic
Changing text to Italics
6 replies · Started by William on October 7, 2017
I've tried everything to get a certain piece of font to be in italics but nothing seems to affect it. I'm guessing its just being overridden by some other CSS somewhere.
I'm trying to make the font within the speech bubbles italic.
Link to website: http://www.smartdogstudio.co.uk/
Hi there,
Try this:
.speech-bubble-text {
font-style: italic;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Still nothing... Is it something to do with google fonts?
Ah this worked
.speech-bubble-text {
font-style: italic !important;
}
This should also work:
.textwidget .speech-bubble-text {
font-style: italic;
}
Ah yes, that works also. Thanks a lot!
No problem!