Reputation: 193
I'm beginner in org-mode and not a software engineer. I came across two html themes here. However, I find that the font of text portion very small. I want increase the font size of the text portion under the headings. How do I achieve this? Where and what should I modify?
Upvotes: 5
Views: 2069
Reputation:
If you just want to increase the text size in the generated html and don't want to get too involved in css you can just put this:-
#+HTML_HEAD_EXTRA: <style>*{font-size: x-large;}</style>
at the top of your org file. see this; https://www.w3schools.com/cssref/pr_font_font-size.asp for other values!
This should work with or without pulling in a CSS file...
Upvotes: 4