1
vote
2answers
36 views

How do I modify IE Gradient CSS to use height and a third color?

I have the following CSS for Gradients: For IE 8-9 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d6d2',] endColorstr='#f9ffff', GradientType=1); /* IE 8–9 */ -ms-filter: ...
0
votes
1answer
26 views

Conditional stylesheets. I need to style according IE versions and having

Hi,I wrote a condition stylesheet, and I couldn't find condition for IE7-IE7.9 I wrote these: • equal to IE6 or less than IE6 .. => [if lte IE 6] • IE7-IE7.9 .. => [??] • equal ...
2
votes
2answers
209 views

IE8 doesn't apply css display dynamically

I'm trying to develop a table that hides its columns upon a given value. I am using a solution discussed in another SO question. As part of the suggestion there they say that to support IE<8 ...
0
votes
1answer
52 views

IE modifying stylesheet rule does not refresh

I'm adding a rule to a stylesheet via JS and then trying to edit that rule. It works fine elsewhere but not in IE. I know about the difference of accessing the stylesheet & rules in IE, I guess ...
0
votes
1answer
345 views

IE8 / IE9 does not load CSS

On this site http://gaeilge2013.ie/ some stylesheets are not loading in IE9. In Chrome / Firefox / Opera / Safari it's all good. Very strange. This is the css which is not applying: <link ...
0
votes
1answer
123 views

Site works fine in all browsers, except IE7 and lower, site has no style at all

The website I'm working on is currently working fully on latest chrome which is what I'm using, but when I use tools like IE NetRender to check its compatibility with older IE versions, the site comes ...
3
votes
1answer
284 views

Rails - CSS not loaded in internet explorer

I've been struggling for weeks trying to fix this problem, but I haven't found the solution. My webpage works great on both Chrome and Firefox, but not on all versions of internet explorer. ...
0
votes
3answers
303 views

how to define css styles for ie only?

i have come across: /* for firefox only */ @-moz-document url-prefix() { #main_menu ul ul { top: 37px; } } which can be used to define firefox styling only, is there a similar alternative to use ...
1
vote
1answer
108 views

CSS stylesheets are not loaded in internet explorer 9

My environment is Rails 3.2.8, and all my stylesheets are found in app/assets/stylesheets in .css.scss format. I'm also using Bootstrap-sass for my application. The stylesheets do not seem to be ...
6
votes
5answers
10k views

<!--[if !IE]> not working

I'm having trouble getting <!--[if !IE]> to work. I'm wondering if it is because I have this in my document <!doctype html> <!--[if lt IE 7]> <html class="ie6 oldie"> ...
0
votes
1answer
74 views

IE doesn't use External CSS within a DIV

If this question has been asked before - please forgive me, I couldn't find it. I am AJAXing HTML documents to a div with javascript. This code is a simplification. Chrome-23 and FF-8 render the ...
0
votes
2answers
164 views

CSS Conditional IE Statement Being Read by Firefox

I have a CSS quandary. If I do this: <!--[if gte IE 8]> <link href="/ELS_Soulard_Project-web/css/soulard_base_ie_butchery.css" rel="stylesheet" type="text/css" media="screen, projection" ...
1
vote
1answer
67 views

What are the limits to the size and quantity of css files from browser to browser?

After reading Internet Explorer's CSS rules limits, it appears that Internet Explorer will only load 31 style sheets and each one must contain less than 4095 rules. Do other browsers and different ...
3
votes
1answer
295 views

Drupal 7 - Internet Explorer 7&8 ignoring stylesheet

I am nearing the end of a Drupal 7 website build and am testing in browsers. Everything is fine in all browsers except for IE 7&8 - this appears to be a common problem. I've read a lot about how ...
2
votes
2answers
270 views

How to change .css priority with javascript

I need to change priority of loaded .css files using javascript. I found that i can do this just by replacing position of < link rel="stylesheet".... >tag in the head element. This solution works ...
0
votes
1answer
377 views

Internet Explorer and Border around Image IN iFrame

so I am trying to fix some css issues with a site I am working on, and everything looks pretty much the same except for 1 iFrame element. The iFrame contains a picture that is randomly generated, and ...
0
votes
0answers
94 views

Detect document mode on server-side

I have observed that detecting IE from the HTML Conditional Formatting to select stylesheets (-> IE7 and lower OR IE8+) is not a good idea because it only decide based on Browser Mode. Compatibility ...
3
votes
2answers
949 views

Internet-Explorer 7-8: Implement base64 webfonts

Internet Explorer seems to abort the EOT file loading progress sometimes, so the font does not show up correctly. There is a abstract solution with eotfast & mhtml, but it's not supported within ...
1
vote
2answers
1k views

Make a table fill the entire window

How can I make a HTML table fill the entire browser window horizontally and vertically? The page is simply a title and a score which should fill the entire window. (I realise the fixed font sizes ...
0
votes
1answer
475 views

Conditional CSS for IE in Wordpress not working

enter code hereI know this has been brought up so many times but I am really struggling to find the answer. I am currently using the following code: <!--[if IE 9]> <style ...
2
votes
2answers
903 views

IE Not Applying Styles

I am compiling several stylesheets into one min stylesheet in a staging environment The styles are applied locally in IE where each stylesheet is separate, but they are not being applied in the ...
2
votes
2answers
222 views

IE 7 & 8 failing to load (or perhaps correctly cascade) part of a stylesheet

I have a bizarre problem, IE 7 and 8 are not loading about 80% of one of my stylesheets, they get to a point, and then don't load any further. The IE dev tools recognise the unloaded properties, but ...
16
votes
1answer
5k views

Internet Explorer's CSS rules limits

I've read conflicting information regarding Internet Explorer's silly CSS limits. I am (think I am) understanding that you can only have 31 <style> and <link> tags (combined), and that ...
0
votes
1answer
2k views

IE conditional comment not working [closed]

I'm having a bit of a problem with the conditional comment for IE. <link rel = "stylesheet" type = "text/css" href = "css/stil.css" /> <!--[if IE]> <link rel = ...
2
votes
2answers
1k views

CSS Styling Input Boxes - IE7 not picking up any styles

Below is a preview of what I have: To the left, I have a nice styled select box which works on all browsers except IE7. To the right is what shows up in IE7. It's not a huge deal but it would be ...
0
votes
1answer
236 views

add css stylesheet for All Browsers Except Internet Explorer [duplicate]

Possible Duplicate: How to write conditional comment for non IE browsers? i have a stylesheet cause some problems with my website in internet explorer because it contain the a huge ...
-2
votes
1answer
75 views

IE5.5 Filters - why is filter: gradient(properties) not available, while filter: alpha(properties) is?

Here's a question for all you experts out there. When IE5.5 launched, it came with a range of new filters, such as: filter:progid:DXImageTransform.Microsoft.Gradient(sProperties). Later versions ...
0
votes
1answer
281 views

How to make combo box selection similar to mobile device?

I need to give user interface similar to mobile device on IE, when user clicks on combobox it should freeze the background gray and show the selection items in large fonts - once user selects item, ...
0
votes
2answers
138 views

Why is YUI StyleSheet not toggling this image correctly in IE <= 7

What's the issue? When you toggle the image by setting or unsetting "display: none" - the first time it goes invisible, but leaves space allocated - the second time it does not become visible How to ...
-1
votes
1answer
1k views

IE 8 CSS, Submenus not displaying when hovering over the navigation items at http://kabenwireless.net/ [closed]

I'm working on this website for a company and I'm having issues with the CSS in IE8 that allows the sub menus to appear when you hover over the navigation tabs. http://kabenwireless.net/ When you ...
0
votes
1answer
129 views

Nested styles in IE overridden my same names on CSS sprites

I have some CSS sprites to change the image when you hover over them. I then have some jQuery which adds a class to the element if you mouseenter over it (thus changing the background image) and fades ...
0
votes
3answers
323 views

background transparency crossbrowser especially ie

I am having a huge problem figuring out how to use a transparent background color for my website. I can do it with the background:rgba style attribute which works for all browsers expect ie. It very ...
0
votes
2answers
702 views

CSS divs width 50% not working in IE

I'm unable to get this working in IE, the second child doesn't remain in the same line. HTML: <div class="outer"> <div class="inner">left</div> <div ...
0
votes
3answers
662 views

Inline html style fine in Firefox, not working in IE

This is interesting. The attached very simple code gives nice 'background highlighted' text in Firefox, but displays no highlighting in IE7 (and possibly others, not yet tested). The use of such ...
0
votes
4answers
134 views

CSS - Code Generator Question

I develop in Chrome. And when I browser test, there are always some bugs in IE for which I need to make change to (or use conditionals) stylesheets. I know php. Would it somehow be possible to write ...
0
votes
3answers
3k views

Internet Explorer not loading stylesheet

I have a page that uses css. I works fine in firefox but when I open in IE there appears to be no styling. <!DOCTYPE html> <html> <head> ...
0
votes
3answers
215 views

Website displays badly in IE 8, but works fine in other browsers

http://test.rfinvestments.co.za I've been working on this website for a little while and, now that it's online, I'm frustrated with cross-browser compatibility issues that don't present themselves ...
1
vote
1answer
325 views

Problem with Tapestry palette's arrow icons in IE8

I'm using Tapestry to create pages for a web app, and have been using the palette component to add/delete items to/from a group. The page looks great in Firefox (Tapestry seems biased towards ...
0
votes
1answer
349 views

Saving complete Webpage into local disk using IHTMLDocument ATL interface

In our win32 ATL project requirement we need to save the browsed web page into local disk in order to view it offline. Using IHTMLDocument2 interface we have retrieved html content using get_all() ...
1
vote
2answers
2k views

Prevent Text Input expanding in IE

I am having a problem with an input field in IE. The code is for a portlet and widths need to be dynamic as the user can place the portlet on any of the three columns in the page which all have ...
5
votes
3answers
1k views

IE improperly rendering dynamic content until a stylesheet change is made

I have a table of data which is generated dynamically with Javascript. Every few minutes the page refreshes the data by firing off an Ajax request, getting the data back from the server, and ...
1
vote
5answers
1k views

My conditional css stylesheets for IE work when I test the pages locally but are not recognized once I upload the pages to my website

I'm using the IE recognized conditional statement to use an IE specific stylesheet for IE browsers: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> ...
1
vote
4answers
9k views

Cannot get float left/right to work for a div in Internet Explorer

Here is the html: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="styles.css"/> ...
0
votes
1answer
5k views

Why does this “width: auto” style work as an inline style in both browsers but break when moved to an external stylesheet only in IE?

I have an INPUT element that is defaulting to "width: 100%". This causes it to push other elements next to it down onto the next line. To fix this temporarily I added an inline style attribute on ...
16
votes
7answers
22k views

Will targeting IE8 with conditional comments work?

When IE8 is released, will the following code work to add a conditional stylesheet? <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="ie-8.0.css" /> <![endif]--> I've ...