maya90
March 16, 2011, 2:41am
1
I hope this is not something really stupid…
why is btn_delicious.jpg now showing up here?
test
it’s where it’s supposed to be
http://www.francesdelrio.com/photoblog/images/btn_delicious.jpg
other button (FB btn) showing up fine…
it was showing up fine before, then I decided to add a dark gray border around it, and now it’s not showing up… this is really weird…
thank you…
ralphm
March 16, 2011, 3:01am
2
But that’s not where you are telling the browser to find it:
http://www.francesdelrio.com/images/btn_delicious.jpg
The link should be:
<img height="20" width="20" src="[COLOR="Red"]/photoblog/[/COLOR]images/btn_delicious.jpg">
The two images are in different folders. The Facebook image is in this folder:
http://www.francesdelrio.com/images/
maya90
March 16, 2011, 3:03am
3
oh my gosh, you’re right… (how come the other one was showing?)
thank you very much…
ralphm
March 16, 2011, 3:07am
4
The other one IS in the /images/ folder. As I said, they are in different folders.
maya90
March 16, 2011, 3:17am
5
ok, what am I missing here?
this is code in that test page:
<img src=“/images/btn_delicious.jpg” width=“20” height=“20” />
<img src=“/images/btn_fb.png” width=“20” height=“20” />
I realize now that correct path, for .jsp, is /photoblog/images…
but why was one showing and not the other one? they’re both in photoblog/images/…
(fb btn is also here:
http://www.francesdelrio.com/photoblog/images/btn_fb.png )
hmmm… but well either way… thank you for your help…
ralphm
March 16, 2011, 4:34am
6
maya90:
ok, what am I missing here?
this is code in that test page:
<img src=“/images/btn_delicious.jpg” width=“20” height=“20” />
<img src=“/images/btn_fb.png” width=“20” height=“20” />
I realize now that correct path, for .jsp, is /photoblog/images…
What you are missing is that the Facebook image is ALSO in the http://www.francesdelrio.com/images/ folder, while the delicious image is not also duplicated there. That’s why the Facebook image works on the test page. You have it in two places.