Making the font bigger
-
I have searched how to make the font size bigger on the forum, and I saw a post that said alter the 'Custom CSS which sets it to 14' to change it to font size 16 or more.
But there is nothing in my custom CSSSo Im just wanting to find the easiest way to make the text a bit bigger?
Thanks -
@chez said in Making the font bigger:
body {
font-size: 17px;
}i tried this, and clicked the enable custom CSS , but nothing changed.
i even tried making it bigger still
body {
font-size: 20px;
}
but still nothing changed.
Any ideas why thats not making any difference? -
@phenomlab said in Making the font bigger:
- {
font-size: 150%;
}
You must have meant to say:
* { font-size: 105%; }
- {
-
-
@phenomlab said in Making the font bigger:
body {
font-size: 20px !important;
}Nope that didn't work for me, Im not sure why. so have gone back to the 110% which is great
Its funny that making the font bigger isnt just in settings. Its quite a basic function, and on my 12inch laptopscreen it really was a bit small to read.
-
@phenomlab said in Making the font bigger:
@eveh very odd. Seems to work for me. You could try the same but instead either use
em
orrem
so for instance2rem
as the size. Would be interesting to see if that works or not. It's what I use.Im not sure what you mean by 'em' / 'rem' ... where do those words go in body "font-size: 20px !important;"
??