« Back to the HTML Forum

Text color for profile?

Posted by MossEater

posted
updated

Forum: HTML Group

I don't know how to change the font, but can you also change the color of it? Black isn't very great with my profile. Also, can you do custom colors? like hex codes or whatnot


Report Topic

1 Reply

Reply by V0NU_94

posted
updated

Hi!! To change the color of text you can use this code:

<style>

p{

color: #[INSERT HEX CODE!];

}

</style>

If you want to change the font in your profile, you can check google fonts and use the following code:

body{

font-family: 'Times New Roman', cursive;

font-size: 110%;

}

However, this is just for Times New Roman, i'm unsure wether it works for other fonts and the Google font codes I have tried haven't worked for me, i'm pretty sure there are more credible font changing codes here on spacehey though, so it's better if you search yourself, i'm sorry.

If some text in your profile doesn't change, that means it's a different category, there are a few different categories, h1, h2, h3 and h4.

<style>

h1{

color: #[INSERT HEX CODE!];

}

h2{

color: #[INSERT HEX CODE!];

}

h3{

color: #[INSERT HEX CODE!];

}

h4{

color: #[INSERT HEX CODE!];

}

</style>

and so on, you can change more than just colors, you can add shadows, backgrounds, gradients, etc..., this also works for normal paragraph text.

if you want to change other elements (links, etc...), this video by pixie angels teaches that, and more.

--->https://youtu.be/UpE-qI7iXhs?si=M8fyqLkGA4e5QcN4


Permalink Report Reply