« Web, HTML, Tech Forum

how 2 change background color?

Posted by Toby

posted

Forum: Web, HTML, Tech

i wanna change the background color to black,, not the pink background behind all the text on my profile but the grey background behind it,, if that makes sense? plz help


Report Topic

2 Replies

Sort Replies:

Reply by Dustin

posted

Add this to your "About Me" section of your profile.

Obviously, you can change the word "black" to whatever color you want your background to be.

<style>
body {
    background-color: black;
}
</style>

Optionally, you can define RGB colors to set your background if you want a more "fine-tuned" color.

<style>
body {
background-color: rgb(254,40,145);
}
</style>

This link will take you to a website where you can choose the color you want and it will generate the numbers you need to input.


Permalink Report Reply

Reply by Toby

posted

thank u so much dustin !!!!!!!


Permalink Report Reply