Comments 15against4 started the conversationAugust 22, 2020 at 5:30pmHow to change the formatting of tags? i.e. Capital letters/Not capitals, background colour, hover colour, text colour, hover text colour etc.?i thought it might be the "Custom Color for H1 Tag Inside Post Content" and so on, but that doesn't seem to change anything. 2,701PenciDesign repliedAugust 23, 2020 at 2:58amHi,You can add more this code to Customize > Custom CSS to do that: .container-single .post-entry .post-tags a{ text-transform: capitalize; font-size: 12px !important; border-color: #ff0000; background: #fffb80; color: #000000; } .container-single .post-entry .post-tags a:hover{ border-color: #ff0000; background: #ff0000; color: #ffffff; } Change:- The text 'capitalize' to 'none' on the above code to change the text to 'not capitals'- Change value 12 to font size value as you want.- Change all color codes on border-color, background and color to change border color, background color and text color. You can get a color code hereBest Regards,PenciDesign1 Like 15against4 repliedAugust 23, 2020 at 2:06pmExcellent - thanks a lot! Sign in to reply ...
How to change the formatting of tags? i.e. Capital letters/Not capitals, background colour, hover colour, text colour, hover text colour etc.?
i thought it might be the "Custom Color for H1 Tag Inside Post Content" and so on, but that doesn't seem to change anything.
Hi,
You can add more this code to Customize > Custom CSS to do that:
Change:
- The text 'capitalize' to 'none' on the above code to change the text to 'not capitals'
- Change value 12 to font size value as you want.
- Change all color codes on border-color, background and color to change border color, background color and text color. You can get a color code here
Best Regards,
PenciDesign
Excellent - thanks a lot!