ie6-bug

CSS: Centering a floated block level element in IE6 (It almost works)

I have a block level element which I am centering on the page. I have gotten it to work for all other browsers except IE6 where it ALMOST works. http://tinyurl.com/28sh9eq If I view the page in IE6 the red box is slightly off center of the pink one in IE. If I then resize the browser window it snaps into place where I want it. Uhhhhh.....

How to make inline png <img> transparent using css?

How to make inline png transparent inside div? using css <div id="report'> <p> some text </p> <img src=transparent.png" /> </p> </div> this is image for example . Other than ball i want to make transparent other white area. Which is looking grey in IE6 I want to do in css like this div#report img {.....} is it possible? Edit: ...

IE6 Bug - Div within Anchor tag: inline images not links

I'm trying to get everything in the anchor tag to be a clickable link. Unfortunately, in IE6 (which is the only browser I'm concerned with currently), the only thing that isn't a clickable link are the inline images. I know that it's not valid html to put a div inside of an anchor but it's not my markup and I've been asked to avoid chang...

[solved] IE6 PNG-transparency CSS hack not working

I looked around and decided to use a CSS approach rather than rely on JS... I figure the kind of corporate users stuck with IE6 might also have JS disabled by IT departments. So In my HTML I have: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3....

After I appendChild() in ie6, do stylesheets apply to that element?

I am creating some elements in javascript like so: var parent = document.createElement('div'); parent.setAttribute('id', 'parent'); var child = document.createElement('div'); child.setAttribute('class', 'child'); parent.appendChild(child); otherelement.appendChild(parent); I have a stylesheet which has styles for #parent and .child....

Formatting issue with IE6 working well with IE 6+

Hi All, I have my site working perfectly in IE 6+ but it looks weird in IE 6 or IE 5.5, as I can't ignore the users with IE6 because still around 6% of traffic occur from this version. I am looking forward to have the alternate. With my some research I came to know that by setting haslayout property, I can solve out formatting issue, b...

Why is this site so slow in IE6 and crashes?

My site: http://newwebsite01.endurit.com/Dienstleistungen/Internet-Solutions.aspx ...Crashes in IE6! Statusbar always shows remaining items.... If you click anything while you see this message it crashes. If you do nothing and wait about 4minutes it loads the site. I just googled and found several solutions why IE6 could crashing and b...

How to solve IE6 selectbox flicker problem

I am experiencing a strange IE6 problem. I have an ajax request which refreshes a part of my page. However after the DOM injection the select boxes are disappearing and after a fraction of a seccond they appear again. Is there any way to prevent this? or solve ? I am using jQuery for the ajax part. Thank you! ...

Position absolute for rounded corners and problems in IE6

Im using position absolute to give the top left corner of a DIV a rounded corner. HTML: <div id="MyDiv"> Some content <div class="topLeft">&nbsp</div> </div> CSS: #MyDiv { position: relative; padding: 12px; background: #fff url('graident.png') repeat-x top left; } .topLeft { position: absolute; top: 0; right: 0; width: 10...

CSS Menus having cross browser problems

I am trying to solve a problem with a CSS menu where the menu does not display properly in IE 6 I see that the HTML has some conditional code to make it work with different browsers but I do not understand it well enough. Can someone suggest a fix so the selected tab in order displayed without the grey breaK? Thanks! Here's the CSS...

Why won't Javascript assembled Iframe load in IE6 over HTTPS although it will over HTTP?

The issue: The iframe won't load inside the <div id="shipnum"></div> tags on the review and submit page here (relevant HTML and javascript is also below): https://checkout.netsuite.com/s.nl/c.659197/sc.4/category.confirm/.f Login:[email protected] pass:test03 To produce problem: - Where it says "Your Third Party Shipper Numbers (To ente...

Does !important not works in IE6 ?

Does !important not works in IE6 ? If we need IE6 compatibility too then shouldn't we use !important? ...

IE6 Flickering Issue Using Superfish Menu with BgIFrame

Hi, Just wondering of anyone knows of any fix to stop the flickering of the superfish menu that expands out over an iframe using IE6 as I am unsure of how to fix or if there is in actual fact, a fix for it. When I have a vertical menu that extends out to the right with menu options over an iframe, the menu flickers on every menu branch...

IE6 buggy position:fixed rendering with absolute positioning

I have a page with a fixed background image that is supposed to stretch to fill the entire viewport. To achieve this I have body height set to 100% and overflow to auto. Unfortunately this triggers that hoary old IE6 positioning bug where anything set to position:absolute behaves as though it is fixed. This is part of a CMS template so...

Iframe SRC Value Change Not Refreshing Iframe in IE6

Hi, I have an array of two urls that I read and feed into an iframe src value using: document.getElementById("iframe").src = unescape(dashboard.url); Immediately after this line, I issue an alert(document.getElementById("iframe").src), which all works fine. My problem is, is that the first URL in the array seems to load correctly an...

Doing a top level navigation with drop downs: have IE bugs

So I was trying to do a top level navigation and it works pretty well across the regular browsers (it has kinks but those I can iron out). But for whatever reason, in IE6/7 the links are placed over the dropdowns when the browser viewport shrinks. It functions in what I think is most of the other browsers, and I do not for the life of ...

Event is undefined in IE6 but works fine in Firefox, Chrome etc.

IE6 is getting to be pain but it still makes up (apparently) a good chunk of the browser market share, so I need to make this work. function getPosition(e) { e = e || window.event; var cursor = {x:0, y:0}; if (e.pageX || e.pageY) { cursor.x = e.pageX; cursor.y = e.pageY; } else { var dex = document.docum...

Transparent PNG in IE6 (AlphaImageLoader)

How can I get the Microsoft.AlphaImageLoader to work?? I am trying the following: .navHeader { /*Alpha Loader*/ background-image: none; background:transparent url('../../../../commondata/sharedimages/summary/NavBox_topMiddle.png'); filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../../../comm...

IE 6 JQuery Selector

Hi, I have a simple HTML layout like so: <html> <head> <title>HTML Page</title> </head> <body> <table> <tr> <td> <a href="some.html">Text</a> </td> </tr> </table> </body> </html> I am trying to select the first td with a selector like this: html > body > table > tr:nth(0) > t...

Apply the AlphaImageLoader for transparent PNGs in IE6

I have been trying for some time to get the AlphaImageLoader to work with my s in IE6. One of the solutions I was trying suggests applying the AlphaImageLoader and then the Opacity(0). This would essentially put the transparent png in the background and make the orginal png disappear. When I try this the image just disappears. Omitting ...