Abbi Normal
Hello
I really like your guide, it's helped me out quite a bit. However, I am having difficulty putting a color background on the headers of the sections in my profile. The code you listed seems to completely white-out the color AND the text, and I'm not sure what I'm doing wrong.
Also, if it possible to put a color border on the sections in my profile?
Thank you for your time!
For your first part of the post, to change the header of a panel and the colour of the text try this code:
.panel h2{
background-color: #FFFFFF ;
color: #FFFFFF;
}
Replace FFFFFF with a hex colour of your choice.
color sets the text colour, background-color sets the backgrounds.
As for a border around the panels:
.panel{
border: solid 2px #3d8ad0;
}
That will do it.
Change the hex to a colour of your choice.
There are other types of borders other than solid, such as:
dotted
dashed (i think)
double
and others.
I hope my post helped you ^^