Photo Not Found Error
W Thorne
Registered Users Posts: 46 Big grins
When I went to my site just now I have several Photo Not Found errors written across my header.
I don't have any photos in my header just words.
I have not made any changes to my site in about a month so not sure where this is coming from.
Thanks. Any help is appreciated.
I don't have any photos in my header just words.
I have not made any changes to my site in about a month so not sure where this is coming from.
Thanks. Any help is appreciated.
0
Comments
Wilif,
I believe that your problem is this css declaration...
background: url(http://www.texassportsimage.com/photos/XXXXXXXX-L.gif);
Cheers,
David
SmugMug API Developer
My Photos
You have this in your CSS:
#my_header img {
width:xxx;
height:yyy;
border:0;
}
.homepage #my_header {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://www.texassportsimage.com/photos/XXXXXXXX-L.gif);
height: XXpx;
width: 960px;
text-align: center;
}
You'll want to remove that since you really aren't calling any image there.
Portfolio • Workshops • Facebook • Twitter
#my_footer img {
width:xxx;
height:yyy;
border:0;
}
.homepage #my_footer {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://mcleod.smugmug.com/photos/XXXXXXXX-L.gif);
height: XXpx;
width: XXXpx;
}
remove all that code and you'll be fine
Portfolio • Workshops • Facebook • Twitter
www.texassportsimage.com
If all pages, remove the following from your css section:
#my_footer {display: none; }
Homepage only, add this below the above line:
.homepage #my_footer {display: block;}
To 'style' it up, use this:
.homepage #my_footer {
width: 750px;
margin: 0 auto;
display: block;}
Give one of the options a try, and if I'm way off base, yell back
The text you gave me worked. Thanks
Now back to the question why all of a sudden did the code I had on the website for at least 8 months or it could have been 2 years stop working.
Also FYI richW, whatever is supposed to load in the center of your homepage isn't working.
Thanks about my site, thats what I get for starting a project just before I need to login to the help desk to help all the Smuggers. My site can wait
Portfolio • Workshops • Facebook • Twitter
Thanks for the explantion.