« Back to the HTML Forum

how do i increase my profile's font size?

Posted by nishchay

posted
updated

Forum: HTML Group

i tried the code but it did nothing.
this is the code

@import url('https://www.dafont.com/leviwindows.font');

body 

{

    font-family: 'Levi Windows Font' ;    

    font-size: 100 !important;                              

}


Report Topic

1 Reply

Reply by Adi

posted
updated

You need to specify an exact unit by which to set the font size to.


so change
font-size: 100 !important;
to something like
font-size: 100px !important; 
or
font-size: 100rem !important;


also, i would try to get rid of the "!important" directives as much as possible, as it can cause annoying issues when trying to change specific parts of your profile.

Good luck! <3


Permalink Report Reply