Hi folks - what selector do I need to target to change the font size for standard paragraph text in the Angular theme? thanks
change the font size for angular theme
4 posts from 2 voices-
Posted 10 months ago #
-
Hi ShortieD,
You can use this code:
p { font-size: 12px; }Hope this helps. :)
Regards,
IsmaelPosted 10 months ago # -
Hi thanks Ismael - it helps - but just a heads up - any list items didn't inherit this so I went and changed them to
.entry-content ul li {
font-size: 14px;
}.entry-content ol li {
font-size: 14px;}
Thanks
Posted 10 months ago # -
Hi ShortieD,
You can combine the codes you have posted above to:
.entry-content ul li, .entry-content ol li { font-size: 14px; }This will just do the same thing. :)
Regards,
IsmaelPosted 10 months ago #
Reply
You must log in to post.














