The ie-hack tag has no wiki summary.
0
votes
2answers
68 views
min-height doesn't scale
I want to scale a image in all IE Browsers.
My Code:
<div class="outer"><img src="text.png" /></div>
CSS
.outer {
position:absolute;
top: 0;
left: 0;
height: 100%;
...
0
votes
1answer
65 views
ASP.NET Dynamically Set the Theme Name in ImageUrl Porperty
i have used a image which i hardcoded it. but there is option of multitheme and i want to use it that if one person selects the blue theme then blue image should show and if the orange theme is chosen ...
0
votes
1answer
20 views
IE 7 with backgorund image and position with js hack
I am using the js for before hack in IE 7.It displays the background image for the class.But now I want to position the image.Because it is sprite.I dont know why its not working .below is my code.
...
0
votes
2answers
95 views
IE issue with menu hover
Site: http://bit.ly/Pa3xJS
Using IE (9 or lower), when hovering over any menu on the homepage and trying to select items 2+, ie: hover over Shop and try click Brushes or Haircare, the menu ...
0
votes
2answers
79 views
Chrome thinks it's IE and is evaluating conditionals
Maybe I misunderstand how CSS Conditional Comments work, but I thought the bit in the middle of the conditional would only show up for IE... however Chrome and Firefox are both evaluating it, and ...
1
vote
3answers
336 views
IE Hack how to make IE to skip/avoid from reading a line in the style sheet
Is it possible to make Internet Explorer skip or avoid reading a line in the CSS stylesheet?
I'm mostly concerned with IE8, but interested in solutions for any version.
0
votes
1answer
846 views
How to load different scripts for different versions of IE?
I use these scripts to repair the errors in IE (Hacks).
There is one for each version.
I know that everything has IE9.js IE8 and 7 but would like to load
only the necessary script to that ...
1
vote
4answers
463 views
CSS rendered differently in different browsers
I have a problem with css rendered differently in browsers, in IE to be specific, thought I could ask here for help, hopefully you can help me out with this : ))
my website is ...
1
vote
2answers
139 views
CSS not affecting that is written for IE browser only
Why I am not able to apply an css that is for IE browser only,
I am trying to do it as below with in-page css block.
<style type="text/css">
<!--[if IE]>
body a ...
0
votes
1answer
30 views
Sidebar didnt show in IE 7 and 8
Hi I have problem with "sidebar" ( green in left on page... with text "Novinky a nepřehlédněte")
My problem is: In Firefox, g. Chrome, etc... works good, but in IE 7 and 8 didn't show it.
Page: ...
4
votes
2answers
2k views
css absolute position inside relative position not overlapping
Hi I've been having problems trying to get my website to be crossbrowser..
in IE6 I have a container with relative positioning, and inside there is a absolute div, which has negative top and left, but ...
0
votes
3answers
93 views
Why the misspelling in this IE CSS hack?
Can anybody explain to me why the width attribute in this particular IE hack is misspelled?
* html #container a.slided {
width:91px;
w\idth:93px;
}
btw, here's the link from where I've ...
2
votes
2answers
1k views
.png images not rendering correctly in IE7, IE8
They look great in FF, Safari, but the social media icons don't render correctly in IE.
http://www.erisdesigns.net/STAGE/ED1.3/
Is this an IE problem, or something to do with how I'm creating the ...
1
vote
4answers
2k views
jQuery css() function won't apply IE hack attributes
I'm trying to apply an inline-block style to an element (a div to be specific). And in order to achieve this in IE you have to use a hack:
$('#element').css(
{
'display' : ...
1
vote
1answer
938 views
Strange IE7 borders behaviour
my website looks ok in all browsers expect for IE7 I have lot of issues with this browser. Below is the image with which I have problems :
I made a pagination which has a problem with IE7, the ...
1
vote
1answer
888 views
parsing CSS with Java
I need to parse CSS files in Java, and have tried using the Batik and CSSParser libs with success. The issue I am having is that when I run into IE hacks, I loose the formatting; it appears to me that ...
0
votes
2answers
478 views
What kinds of css hack for IE do you know? [closed]
I know these so far:
*width:to hack all IE
_width:to hack IE6 only
Can you guys continue?
0
votes
2answers
312 views
Valid IE6 css hacks?
Select all the CSS hack(s) that IE6 can understand for class red
<p class=”red”>text</p>
<!—[if IE 6]> .red{color:red}>![endif]-->
.red{_color:red}
.red{*color:red}
* html ...
2
votes
3answers
8k views
Is there any way to modify the HTTP headers for IE6?
I need to be able to modify the HTTP headers for Internet Explorer for testing purposes.
Basically, I want to achieve the exact same thing that the Modify Headers plugin for Firefox does.
0
votes
2answers
3k views
CSS: How can I overcome negative margin and absolute position issues in IE6?
I'm using absolute positioning and negative margins (with top: and left:) to position logos and other such things in my website. I'm aware that IE6 has problems with negative margins and absolute ...
4
votes
3answers
3k views
CSS method to include IE6 hacks
CSS has @import, right?
IE6 understands *html selector hack, right?
Is it possible to combine them like
//*html @import url(ie6hacks.css);
or, possibly,
//*html { @import url(ie6hacks.css); }
...
2
votes
3answers
2k views
IE 6 and the multiple button elements all sending their name & values
When using multiple button elements in a form, I realised that IE7 sends the innerHTML instead of the value of the button. All good I thought, I'll simply change my PHP code to this
<?php
if ...
2
votes
1answer
4k views
Can you tweak the left and right padding on an HTML input button?
The longer an input button's text (value) is, the wider the left and right padding seems to get (IE). Explicit CSS padding seems to have no effect. Does anyone have a hack for this?
3
votes
6answers
307 views
What is the best solution for using transparent PNGs in Internet Explorer 6?
Lack of proper PNG support in IE6 is a well-known issue, with several solutions. There does not appear to be a clear best accepted practice or method.
What do you propose the best solution is, and ...
12
votes
18answers
1k views
How are programmers tackling ie6 bugs these days?
I have been using dean edwards ie7/8 script. Not sure if it's my implementation or not but sometimes I would experience ie6 issues that weren't quite fixed or required special handling which meant I ...
0
votes
1answer
4k views
How to stop IE “moving” text around within a <div>?
Humbly asking for help with (of course) IE.
I have a div that is a simple background color block (#greenback) and it contains two other divs.
The first (#billboard) is some centered text and the ...
3
votes
2answers
475 views
using #IEroot for ie-targeted styling?
Has anyone been able to succesfully use the IE CSS hack #IEroot? I stumbled upon it from this article but it doesn't seem to work for me.
I'm trying to fix/hack the inline styling bug to produce li ...
5
votes
3answers
7k views
Embed xsl into an XML file
I'm trying to embed an xsl into a XML file. The reason for doing this is to create a single file that could be moved to different computers, this would prevent the need to move the xsl file.
The ...
2
votes
4answers
6k views
IE adds extra top-margin to every li-element
I am currently doing IE-hacks on a website I'm working on:
http://www.timkjaerlange.com/wip/co2penhagen/
I got a problem with this unordered list. IE seems to add extra top-margin for every ...
2
votes
4answers
907 views
Help me work around these two IE6 layout bugs
My webpage is suffering from two IE6 rendering bugs. Each of them have workarounds, but unfortunately said workarounds are incompatible with each other.
Here's a minimized test case. The behavior in ...
