alright. so I've been on hiatus for a couple months, probably since the school year started for me if i can remember correctly. i've been really wanting to get back on here regularly, but there's always this one certain thing thats been bugging me. that is the extremely large font that is used on the main news page and plenty others around the site. (actually, I don't know if anyone else is having this problem...) any who, when I log on regularly I get greeted with this large font that I don't know how to fix. it wasn't like that before; it was quite smaller, somewhat similar to the size of the font on many other pages on subeta. i'll give a bit of an example below:
Large font
As seen on news page:

On shop page:

On forums page:
Smaller font
As seen with the Centropolis page:
to be clear, what I'd like to do is fix the large font on those pages I listed in the first spoiler (and more) and make it a bit smaller (no, not too small!) just so it isn't all up in my face and isn't too contrasting with the sidebar's font size. i don't know if its a problem with the site itself, my customCSS, or my browser. currently, I'm using safari.
my customCSS is currently this:
body, html, .sidebar-event, div#sidebar-inner-dash {font-size:11px!important}
.ui.grid>div, .column {font-size:12px!important}
body, html {font-family: Verdana!important;} body, html {font-size:11px!important}
would very much like any help with this. thank you in advance! please ping me with your post so I can see it.
in chrome or firefox, you can right-click on any element on a page and choose "inspect" or "inspect element" to pull up a panel that tells you the name of that element's class or ID. the huge header on the news page uses the class ".display-4" while the shop and forum headers are h2 headers. so if you add the following to your custom CSS...
.display-4 {font-size: 20px}
h2 {font-size: 20px}
you can control the size of those headers around the site. you can apply this method to any other site element you want to alter, though some are trickier than others (some use multiple classes and are nested inside other divs and inherit various properties so it might not be immediately obvious what you need to change in the code).
let me know if you need any more help or if anything was unclear.