Strange bug in +IE8 [closed] - html

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
Please take a look at this page via IE 8 or 9: http://sneakyrascal.com/starpons/about.html
As seen there are two footers but in fact I only added one footer. I figured it's connected with <a> tag. when I remove it, it will work fine.
Thanks in advance for any help

You open a new a instead of closing it:
<a href="images/Ruby_BIS_0011.jpg" class="iframe" ><img src="images/Ruby_BIS_0011-300x234.jpg" /><a>
You should have found this when using a the validator.

Related

CSS3-PIE: ie 8 weird black spot issue [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
If you have a look at the following link: http://78.109.168.22/tv - you will notice that in IE8 in the middle of the logo header there is a little black spotted area. I have no idea what it could be!
Has anyone got any ideas? I would love to hear them! It's driving me crazy.
Screenshot of what I'm talking about - http://i.imgur.com/AaZMHdr.png
Solution was a Drupal skip link ID. I just displayed this id to none in IE8 and it has now be resolved. Thank you all!
These line of code creating the problem
<div id="skip-link">
Skip to main content
</div>

Image getting cut off in IE [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Please checkout my website in Internet Explorer:
http://www.ziftit.com/index2.html
I can't figure out why the gift box image is getting cut off in the top of the image.
Update: I added the doctype to the top of the page and then got rid of all the comments and now it displays perfectly!
As a first step, add a correct Doctype to your document.
Then validate that the HTML and CSS are valid.

HTML Positioning Issue [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
I'm trying to figure out why my top menu navigation is not positioning correctly at the following page. It adjusted unexpectedly when I added an Aweber sign-up box script. I'm just confused as to how this is affecting the top of my page.
Here's the link: http://www.richmindonline.com/index1.html
Any help would be appreciated, as this is for a client! Thank you!
Alright, I believe that I found the problem. Just after the img tag pointing to images/custom-window-treatments-tx.jpg, there is a bunch of whitespace. Remove all of it, making that whole td look like this:
<td valign="top"><img border="0" src="images/custom-window-treatments-tx.jpg" width="950" height="40"></td>

Why my unexpected outcome just making a link? [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
Ive got this obviously wrong output when trying such a simple thing as making a link:
http://www.facebook.com/apps/a%E2%80%8Bpplication.php?id=164355773607%E2%80%8B006
Of course the link should be
http://www.facebook.com/apps/a​pplication.php?id=164355773607​006
and it's also corrrect in the code:
<a class="nobk" href="http://www.facebook.com/apps/a​pplication.php?id=164355773607​006"><img src="/_/img/facebook.png" alt="Facebook Kool Business" width="50" height="50"/></a>
My page with the bug is koolbusiness.com. Can you tell me what's wrong?
Thank you very much
Omit the spaces in "a pplication.php" and the id value.

Anchor tag not works in IE6 [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I am using
<a href="www.google.com" > test link </a>
I didn't understand why its not working in IE6.
You need to include http://.
test link
You should also explain what exactly you mean by 'not working', but regardless of that, that's the only mistake I see in your link.