internet-explorer-7

CSS class not being applied to input element on asynchronous call back

I am using the following CSS class to hide a textbox in an asp:UpdatePanel to accept input from a USB card reader. <style type="text/css"> .USBBox { position: absolute; left: -999em; } </style> When I click an asp:LinkButton control that is configured to be an asp:AsyncPostBackTrigger for the update panel...

Problem with CSS's display: inline-block and IE7!

I created this to simply explain my problem. It is of some list items being displayed as inline blocks. I had an original method that didn't work either, so I used this CSS. http://jsbin.com/upexu/edit This works great in FF and IE7, as a standalone. Unfortunately, in my implementation on my site, it doesn't display correctly in IE7 ...

:hover pseudo-class of CSS does not work in IE7

Hi guys I have problem with the :hover pseudo-class of CSS. I am using it like tr.lightRow:hover { color:red } It works in Safari and Firefox but it does not work in IE7. Please help me. ...

Google Chrome and IE7 Unordered List problem

I'm in the process of designing an online resumé, but am having problems in google chrome, and ie7 with an unordered list. While they render fine in the sidebar, for some reason in the content section, the first bullet point, floats to the far right of its container, with the text displaying fine, and all other bullet points and text pos...

Hover not working properly in IE7

Hello, I'm trying to replicate a Facebook wall-like effect where hovering over a feed item displays a "Delete" button. The button is invisible on page load, but hovering over the item displays that particular item's delete button. This is achieved with jQuery and the CSS display property. This works all well and good in browsers such a...

forcing IE8 browser display a website in IE6 standards mode

Hi, there are document compatibility modes for all versions of IE browsers, but none for IE6. why is it like that? how can I make IE8/IE7 browser display a website in IE6 standards mode? other than changing the code to use conditional statements for different browsers, or different websites altogether, is there any easier or better sol...

What the?!? text in div wraps right everywhere but IE7. IE7 has one word per line?

I've got an unordered list that is sort of a nested javascript helpbox. You click on the help topics, and a scrollable div appears with the help items. Those help items are the unordered list. Everything is working great in FF, Safari, IE6 (well-I am getting a horizontal scrollbar there in IE6 for some reason) and IE8. But in IE7, it...

Help with layout problems in IE

I am having some problems getting this layout to work properly in IE (both 6 and 7). It, of course, works fine in Safari and Firefox. What's going on here: I have a footer which is fixed to the bottom of the viewport, or under content - whichever is longer. I have a header above the content which contains a number of centered and flo...

CSS Overflow issue in IE7

I'm working on a site for a client at the moment, and have it working correctly in all browsers except IE7 (IE6 and IE8 tested fine). It's a WordPress site and the theme is a child theme of the Thematic framework. This is an example of a page that is not displayed correctly in IE7: http://roynesbitt.credit-medics.co.uk/our-donors The ...

DIV tag not changing height depending on content

Hi, I have an asp:panel and a gridview inside the same panel. The asp:panel is getting rendered as < DIV> The problem with me is DIV tag is not adjusting its height with content in IE7. But in IE6, its working perfect. I tried style="overflow:auto;" (for asp:panel)...But what happened is am able to see scroll in IE7 (...and ie6 works ...

Disabled Textbox: Unexpected Values for window.event.clientX & clientY

I have some mouse-tracking code that isn't working as expected in IE that basically boils down to the HTML below. I've tried this in both IE7 and IE8. The part that's unexpected is when you mouse over the text in the disabled textbox, the values for window.event.clientX and clientY seem to be relative to that text instead of the whole w...

Missing top and bottom border in IE7

I have a problem with border in IE7. For some reason the border shows only from the left and the right side: IE7, renders incorectly: FF, renders correctly: Using this CSS: .tags a { background:#fff; border:1px solid #D8DFEA; padding:5px; margin-left:5px; color:#3B5998; font-size:14px; } What am I doing wrong? ...

panel control scroll comes only when click IE7

Hi, I have an asp panel, and a gridview inside it. Panel has scrolling. But the scrolling is visible only when user clcik one gridview row. The issue is in IE7..but in IE6, it works fine. ...

jquery .replaceWith() not playing nice with .clone() in IE7

I'm using jQuery to created a linked TOC that appears in a dialog box. The function I wrote to do so finds all the h4's in the page and gives them ids to link to adds some numbering display info clones them turns the clones into lis wraps the inner text in anchor tags finds the anchors adds a click function to the anchors to close...

IE7: Flash playing in hidden divs :(

Hi all, The scenario is a bunch of divs with flash content inside; clicking on a menu will show / hide these flash-filled divs. Problem is IE7 plays these divs before I "show" them. How can I make sure that IE7 doesn't start the Flash movie until after the div has been "shown"? Much thanks in advance, LNV. ...

Internet Explorer line 1 char 1 code 0 error

I'm using jQuery+drupal and some jQuery plugins. All is ok with Firefox. But in IE's i'm receiving problem like this. Line: 1 Char: 1 Error: object expected URL: http://businessway.am I have included .js files. How to know where is the problem? In which file? Line 1? Which file? If you can please check site which I gave before. ...

Fixing problems on a site that only breaks on IE7

I did a new Drupal theme for my site based on the Zen theme. Since I am on Windows 7, I did testing with IE8, Firefox 3.5, and the most recent version of Chrome. The site looks great in all of those, but I just found out that it breaks on IE7. Unfortunately there is no way to put IE7 on Windows 7, so I'm at a loss for how I am going to f...

Having issues with IE7 and floated elements (of course)

I'm working on a site that has a wrapper element, with a left and right sidebar, each floated within the wrapper. The left sidebar (which contains navigation) is clearing the right sidebar and pushing it to the bottom for some reason. I've tried fixing it in about 50 different ways. I originally thought changing the size and or margin ...

CSS breaks in IE6

I hae the following CSS selector: .section h1, .section > div:first-child { background-color: #E5E5E5; border-bottom: solid 1px #CCCCCC; padding: 3px; text-align:left; font-weight:bold; } Now I know that the first-child and the > selectors do not work in IE6, but .section h1 does. My problem is that in IE6, the .section h1 does ...

Spaces Between Table Rows In IE7/8

I would like there to be spaces between rows of my table in IE7/8. I did this: .selector tr { display: block; padding-bottom: 3px; } Which works in Firefox but not in IE7/8 where the 3px gap doesn't appear. ...