Hi,
just a very noob question please,
as mentioned in the title, I want to know how can I applied a font to all my “html” entries (elements) ?
thanks in advance
Bump. I also need the ability to choose font style/size/etc. for the html element just as I can for the text element. How? Thanks!
I figured this out. Go to Settings…SEO / Metatags… Script/metatags in header… and then use CSS. For example:
<style type="text/css">
p, ul, ol {font-family: 'Quattrocento Sans',serif; font-size: 17px; margin: 0 0 15px; line-height: 1.6; }
ul, ol {padding-left: 25px; }
li {list-style-position: inside; margin-bottom: 8px; }
</style>
(This assumes I’m already using Quattrocentro Sans for other elements, so it’s already loaded on the page.)
Does it just work like that? Mine still doesn’t.
Edit: Do you mean the HTML element? I use the CKEditor plugin, then output it on html element.
I suppose it depends how the CKEditor formats your text. Mine is in p tags (and I use lists also), so the above css works. Some edtiors don’t use p tags so your css may differ a bit.