Reputation: 61
EDIT: It is now working. Actually there were couple of problems. There WAS a special character which I failed to find out even after @Brady Liles mentioned. notice. and also the "topbanner" div class was creating problem. Thanks everyone for helping me through this.
I'm having a strange problem. I don't know why this banner image is not showing up in browser.
the code used is
<div class="topbanner" style="margin: 5px auto; width: 468px;">
<a href="https://www.internetmodeling.com/22472"><img src="./styles/quarto_amazon_light/imageset/im_468x60_1.gif" width="468" height="60" alt="" title=""></a>
</div>
I've tried putting some other image their too, 728x90.jpg or 728x90.png it doesn't show anyway.
But if I use the same image as the logo, then it works.
<div class="topbanner" style="margin: 5px auto; width: 468px;">
<a href="https://www.internetmodeling.com/22472"><img src="./styles/quarto_amazon_light/imageset/Internet_modeling_forum.png" width="468" height="60" alt="" title=""></a>
</div>
I'm out of idea. Can anyone please help me finding the cause of the issue?
Thanks in advance.
The site in question is http://www.internetmodelingforum.com/ the banner code is right beneath the logo.
EDIT: Things I've tried so far
src="http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/im_468x60_1.gif"
src="./styles/quarto_amazon_light/imageset/im_468x60_1.gif"
src="/styles/quarto_amazon_light/imageset/im_468x60_1.gif"
src="./styles/quarto_amazon_light/imageset/728x90.png"
src="./styles/quarto_amazon_light/imageset/728x90.jpg"
You can check that the images are in there. http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/im_468x60_1.gif http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/728x60.png http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/728x60.jpg
Upvotes: 0
Views: 83
Reputation: 723
Try
http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/im_468x60_1.gif
It seems like your URL had a weird special character in it.. try copying and pasting this one in.
Do you have Adblock on??
Upvotes: 1
Reputation: 2033
This works on my system:
<div class="topbanner" style="margin: 5px auto; width: 468px;">
<img src="http://www.internetmodelingforum.com/styles/quarto_amazon_light/imageset/im_468x60_1.gif" alt="HTML5 Icon" style="width:128px;height:128px">
</div>
Upvotes: 0