victoria Posted July 3, 2019 Posted July 3, 2019 I want to hyperlink my H3s but it is changing the font to italics and all caps. What can I do to keep it normal?
tuanphan Posted July 4, 2019 Posted July 4, 2019 @brandwell you should provide site url to community can check. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
squaresporks Posted July 4, 2019 Posted July 4, 2019 Are any of your other links italic and/or all caps? There's probably some out of control setting or CSS that needs to be tracked down, but without seeing your site, I can only offer a general bandaid of an answer. Try adding the following to Design > Custom CSS: h3 a { font-style: normal; text-transform: none; } If that doesn't work, then try h3 a { font-style: normal !important; text-transform: none !important; } You can also try: h3 a { font-style: inherit; text-transform: inherit; } and h3 a { font-style: inherit !important; text-transform: inherit !important; } Move along. Nothing to see here.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.