Looks like the header image (pulled from another site) has gone AWOL.
http://only1way.com/sportsblog/headerbg.jpg
Error 404 – Not Found
Was your header image being pulled in from some other site?
#header {
background: #1A6FC8 url('http://only1way.com/sportsblog/headerbg.jpg') no-repeat top center;
}
that url is no longer an image.
I’m not sure where it came from I had a coder from rentacoder build my site
Looks like the image disappeared a while back. Can’t even get an idea of what it looked like via Google’s cache. It could be replaced with an image on your own server – 780px wide by up to 135px high.
Not to sound like an idiot- but if I had an image made how could I go about doing that?
The image (headerbg.jpg) would need to be uploaded to your current theme’s images folder via FTP. Then you’d need to edit style.css in your current theme and change:
#header {
background:#1A6FC8 url(http://only1way.com/sportsblog/headerbg.jpg) no-repeat center top;
}
to
#header {
background:#1A6FC8 url(images/headerbg.jpg) no-repeat center top;
}