Giving Forecast Style HTML¶
To install this code, copy all of the code below. Create a new text document in Special Content using the name GivingForecastStyleHtml. Then paste the code into the Source view of the HTML editor.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <style type="text/css"> div.dash h3 { text-align: center; } div.dash sup { vertical-align: super; font-size: .5em; } div.dash table { margin-left: auto; margin-right: auto; width:auto; border: 1; } div.dash thead th.right, div.dash tfoot td, div.dash tbody td, div.dash tfoot th { text-align: right; } div.dash tfoot td.left { text-align: left; } div.dash th.large { font-size: x-large; } </style> |