How can I change the font size on the table on the bottom of this page?
https://forio.com/app/lambrosie/social-entrepreneurship-and-sustainability/index.html#strategic_plan~rprt.html
Change font size on a table
Hi,
You can use CSS to customize the style for the table. Add this snippet before </head>
in index.html
.
<style>
.f-table td {
font-size:125%;
}
.f-table th {
font-size:125%;
}
</style>
WILL