Page 1 of 1
trying to change the blue color of header
Posted: Tue Jun 12, 2018 7:24 pm
by BF79
Hello my friends !! I changed the color of bg_header.gif and when I replaced the original I found the header cut in two colors !! as attachement !!
plz what is the name of the next part that I should to change it too
thanks

Re: trying to change the blue color of header
Posted: Tue Jun 12, 2018 8:06 pm
by Lumpy Burgertushie
you haven't given us any info to help you. we need to see the site or at least the css that you created/edited for this.'
robert
Re: trying to change the blue color of header
Posted: Tue Jun 12, 2018 8:55 pm
by DTMWC
The bottom of your brown colour has a border along it, you would need to use an image editor to remove that border unless you do want it to have a line along the middle.
Look in colours for:
Code: Select all
.headerbar {
background-color:
background-image:
With the above border still there, the background colour would be: #60437b
If you remove the border, the background colour would be: #8c3363
Re: trying to change the blue color of header
Posted: Tue Jun 12, 2018 9:01 pm
by Sniper_E
The only way I could see those colors show in that maner is if you were using an image for your background in your header.
Code: Select all
.headerbar, .forumbg {
background-color: #12A3EB;
background-image: url("./images/your_image.gif");
Normally where the image ended the background color would take over, the blue color.
If this is what you have then change the background-color= "" to the color in the bottom of that image.