The best way to do it is to either wrap the CSS part in triple backticks ``` or to highlight the block of CSS text and tap the </> button in the forum’s editor toolbar:
So the following text that is entered (screenshotted):
Hi all, this CSS editing is a lovely touch. Fine tuning my dashboards and they’re looking better than ever.
Can someone possible assist me with adjusting the calendar main body font size? The font for my actual calendar events is very very small. The tile itself it fairly large and header is a good size font
Please note these CSS snippets provided are not officially supported and you may have to adjust them if there are DOM changes with future releases
-EDIT-
Updated the css slightly to apply the font size change to the whole agenda content, as well as including the font-size change for news-feed tile.
CSS for adjusting icon size (which I find the default size a bit too imposing). If you consider 50% being the default size for the CSS below then I use 35% as a bit smaller icon which I find much more aesthetic. Adjust percentages to your taste…
I usually just target the font size of the icon. It looks like the icons are usually 4em by default, so I just adjust from there.
Half size: (2 / 4)
.tile .icon svg { font-size: 2em; }
25% bigger (5 / 4):
.tile .icon svg { font-size: 5em; }
I was trying to figure out why you had all the other stuff with positioning in your example since the icons are already centered, but I guess once you make the icons so big that they go out of their bounding box, the extra centering can help force them back to center.
Does anyone know syntax for header or title font upsizing? since the scalable updates I cannot read or update the tile title sizes. I did fix the calendar content size with the CSS per guidance above.
You can adjust it in the theme. It’s listed as “Header Font Size” toward the bottom of the customizations. You can choose the ‘Custom’ size and then input whatever percentage you want like 200%
Thank you for that; seems to work with a little trial and error. I had tried the largest non custom size and didn’t see any movement. I am assuming the theme solution is the only way to modify dashboard tile font size (for icon hero types) if scalable method is used? thanks again.
.tile .title { font-size: <specify size in points or em units>; }
-and- .tile .title-footer { font-size: <specify size in points or em units>; }
should to the trick
Note: if you don’t see any changes, you may need to add !important clause before the semicolon to force these styles to override other definitions
Example: .tile .title { font-size: 2.5em !important; }