How can I add a background color to my profile? The basic white annoys me, but I don't want a fancy profile as it makes it difficult for mobile users to navigate.
<style>
body {
background-color: color here;
}
</style>
if you need a list of some hex codes, i personally love this one! gives you the option to choose a color from a color wheel or choose a color on the side and find a list of codes for that color!
If you don't want to code at all, you can add the Profile section to your page and then select one of the schemes.
you're welcome! i'm happy to help! i'm attempting to learn css (it's not easy lol) so if you have any other questions, feel free to hit me up!
The sad thing is, 15 years ago I actually had a little web design business. I was good with html and php. I didn't keep up with it, and I never learned css. So now I am clueless, LOL!
I know the question has been answered already, but I just wanted to add that you can also choose to have a gradient background instead of a solid color. For example, here's the code to do a top-to-bottom gradient with two colors:
body {
background-image: linear-gradient(color1, color2);
}
You'll have to replace "color1" and "color2" with hex codes.