« Back to the HTML Forum

Profile name font

Posted by jason

posted

Forum: HTML Group

Does anyone know how to change your profile name font?


Report Topic

7 Replies

Sort Replies:

Reply by heath

posted

if its a basic font like arial, times new roman, monospace, etc, you can use this code:

<style>

h1{

font-family: times new roman !important;

}

</style>


and just change the name to the font you want to use.

if you want to use a font from fonts.google.com or cdnfonts.com you will need to copy and paste the import code they give you and than also copy and paste the font-family code which you paste into the code above.


Permalink Report Reply

Reply by jason

posted

Did I paste it in correctly? I used Google Fonts for my font.


Permalink Report Reply

Reply by jason

posted

could it be that there are other fonts in the layout?


Permalink Report Reply

Reply by heath

posted
updated

they need to be seperate. like this:


<style>@import url(example.url)</style>


than assign it to h1, like this:


<style>

h1{

font-family: font name !important;

}

</style>


Permalink Report Reply

Reply by jason

posted

thanks bro!! that worked!!! :)


Permalink Report Reply

Reply by jason

posted

Just one more question....How can I make the font larger?


Permalink Report Reply

Reply by heath

posted

on the html guide (link on group main page) under the section "profile text & link codes" there is the code to change name size plus a bunch of others to browse.


Permalink Report Reply