Where did you upload your header image? upload the image in this folder: http://www.911cancerfund.us/wp-content/themes/911fcancer/images/
Also, change css from
#header {
background: url("../images/header-bgnd2b.png") repeat-x scroll left top #f4f7fa;
height: 113px;
position: relative;
z-index: 99;
}
to this:
#header {
background: url("images/header-bgnd2b.png") repeat-x scroll left top #f4f7fa;
height: 113px;
position: relative;
z-index: 99;
}
I hope this helps.
Cheers 🙂
I see now how I can upload files in Appearance > Theme Options. But I don’t know how to “upload the image in this folder: http://www.911cancerfund.us/wp-content/themes/911fcancer/images/”
Sorry, I have a pretty elementary understanding.
You can upload image to the folder using FTP. If you do not have access to FTP then do this.
Upload image either using Theme options or media uploader. Then copy the image path.
Suppose, the image path is http://www.911cancerfund.us/wp-content/uploads/2014/12/header-bgnd2b.png
Change your css to this:
#header {
background: url("http://www.911cancerfund.us/wp-content/uploads/2014/12/header-bgnd2b.png") repeat-x scroll left top #f4f7fa;
height: 113px;
position: relative;
z-index: 99;
}
So, I asked the developer to give me the image path and she gave this to me and said that it “repeats horizontally”
http://borrilaw.com/wp-content/themes/borrilaw-academica/images/header-bgnd2b.png
I tried to do what you said and it didn’t work, is it something to do with repeating horizontally?
Doing following is working when I try from my computer.
#header {
background: url("http://borrilaw.com/wp-content/themes/borrilaw-academica/images/header-bgnd2b.png") repeat-x #f4f7fa;
height: 113px;
position: relative;
z-index: 99;
}
Take a look now, I don’t know what I’m doing wrong but it’s just a square patch.
http://www.911cancerfund.us/
This is what I saw in your website:
background: url(""http://borrilaw.com/wp-content/themes/borrilaw-academica/images/header-bgnd2b.png"") repeat-x #f4f7fa;
It should be like this:
background: url("http://borrilaw.com/wp-content/themes/borrilaw-academica/images/header-bgnd2b.png") repeat-x scroll left top #f4f7fa;