Re: [css-d] My IE Hack is hacking all the other browsers!!

2009-08-06 Thread Rainer Wagener
Chris Blake schrieb: Hi, After getting the website I created working in most browsers I saw that it was not working in IE. I have made a hack that has fixed it in IE: !--[if IE] td{ border: 1px solid #fff; } #main .content{ padding: 0px; margin-bottom: -20px; }

Re: [css-d] off-left technique and width

2008-05-22 Thread Rainer Wagener
Ingo Chao schrieb: Hi The off-left technique [1] often comes with a width set. Does anyone remember the reason for this width? IE5-Mac? .off-left { position: absolute; left: -999px; width: 990px; /**/ Because otherwise the hidden element could possibly extend into the

Re: [css-d] The width: expression(...) hack not working

2007-03-07 Thread Rainer Wagener
Jukka Yucca Korpela wrote: I've seen many references to the trick of setting maximum width on IE 6 and older using an expression(...) value for width. The details vary in the descriptions of this trick, but the common way is something like expression(this.width 300 ? 300px : this.width)

Re: [css-d] How to Filter Out Explorer 7 and Below

2007-01-24 Thread Rainer Wagener
Barney Carroll wrote: The star hack has been kept for IE6. IE7 has to use different hacks. While I agree with the above statement I just take the chance for some remark on IE7 in quirks mode. I wonder if this not has been mentioned before, but I could not find it on the CSS-wiki or elsewhere:

Re: [css-d] How to Filter Out Explorer 7 and Below

2007-01-24 Thread Rainer Wagener
Barney Carroll wrote: If it really is pretty much like IE6 in all respects, then we have little (or less, more to the point) to worry about. At least it was good news for me when I found out. I had to adapt a rather complicated site that has to run in quirks mode (IE only) to IE7. And all I

Re: [css-d] How to Filter Out Explorer 7 and Below

2007-01-24 Thread Rainer Wagener
Barney Carroll wrote: Presumably if you had used the star hack, no changes would have been necessary (not a suggestion, geuine question!)? Exactly. In fact I used the star hack a lot and had only expressions and other invalid statements in my ie.css. When I was about to migrate all those star

Re: [css-d] IE7 quirk = IE6 quirk [was:How to Filter Out Explorer 7 and Below]

2007-01-24 Thread Rainer Wagener
I wrote: The star hack still works for IE7 in quirks mode. Also, the new IE7 hacks only work for IE7 when in strict mode. So, regarding CSS IE7 in quirks mode works pretty much like IE6 in quirks mode. This ist not just about hacks. It reads: All the new CSS features in IE7 like max-width

Re: [css-d] position:relative

2006-12-26 Thread Rainer Wagener
Raghavender Srimantula wrote: [... some code ...] this gives me a nice scrollable table with a fixed header. This is a stand alone. When I include the same code in my jsp file, I get a scroll bar, but my header is not fixed. My jsp respects the overflow:auto attribute, but does not respect

Re: [css-d] Print stylesheet

2006-12-16 Thread Rainer Wagener
Dennis Seavers wrote: I have a print stylesheet for a Web site that isn't working the way I'd like in IE, but it works fine in FF. The Web site has one main styelsheet (http://www.azbof.gov/stylesheets/main.css) that imports the print stylesheet: @import url(print.css) print, handheld;

Re: [css-d] Make IE text clickable?

2006-12-04 Thread Rainer Wagener
Jon wrote: http://www.phazm.net/newphazm/ The Skip to Content link isn't clickable in IE. I remember reading a hack for this, but I can't seem to find it. No hack required. There is an empty div#header following the Skip to Content with margin-top set to '-30px'. So this one simply

Re: [css-d] Serious problems in IE 6

2006-10-17 Thread Rainer Wagener
tefan Nagtegaal wrote: It looks like, when hovering a hyperlink in the main content area or the right sidebar, the background in the (floated) sidebars, are ... well... not displayed right. Looks like a HasLayout problem. adding: * html #wrapper { height:0; } fixed it for me. For

Re: [css-d] no scrollbar in internet explorer

2006-10-05 Thread Rainer Wagener
Thijs Hakkenberg wrote: It loads perfectly in Firefox 1.0 + and Opera, but in IE it won't show any scrollbar. remove overflow:hidden from #container. Rainer -- www.rohschnitt.de __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Jumping DIV in IE

2006-06-09 Thread Rainer Wagener
Hi Peter, I'm having a strange problem with a jumping, floated/positioned div in IE 6 (and possibly lower). ... I thought it might be a hasLayout issue so I added zoom: 1; to everything I could think of, but that didn't seem to do anything. Did you think of div#siteinfo? Aplying

Re: [css-d] Jumping DIV in IE

2006-06-09 Thread Rainer Wagener
Hi Peter, I'm having a strange problem with a jumping, floated/positioned div in IE 6 (and possibly lower). ... I thought it might be a hasLayout issue so I added zoom: 1; to everything I could think of, but that didn't seem to do anything. Did you think of div#siteinfo? Aplying

Re: [css-d] Jumping DIV in IE

2006-06-09 Thread Rainer Wagener
Sorry for posting the same stuff twice. Here's the right one: Hi Peter, it seemed to work on the first refresh, but not on subsequent refreshes. Any other ideas? Because I applied the 'layout' via Javascript I could not test refreshing this way. After downloading the side I was unable to

Re: [css-d] Problem with IE and strange blinking

2006-06-07 Thread Rainer Wagener
Hi Pedro, Somebody has some explanation to the strange effect in scrolls of Agenda and Noticias y Novedades, when you pass the cursor over the buttons of the right superior zone. Only I have seen it in IE. You have to aply Layout to the container #menu_sup for IE. Something like:

Re: [css-d] IE6 Win jumping content after hovering

2005-12-07 Thread Rainer Wagener
Hi Erik, one more of those strange haslayout problems. Adding: * html div#SOWrap, * html div#innerColumnContainer { height:0.1%; } to your css should solve the problem. regards Rainer __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Margins that just won't change

2005-11-28 Thread Rainer Wagener
Hi Ingo, You wrote: Does anyone have examples where !important is a good choice? I use !important in print.styles quite frequently. e.g. div { float:none ! important; position:static ! important; } is almost mandatory in my print.styles. Also !important is a good solution to override

RE: [css-d] crazy IE6 flicker

2005-08-18 Thread Rainer Wagener
Hi Marcel, a semi-transparent background. In IE6 Windows I am having a lot of flicker in the navigation menu. I had the same problem some time ago and got helped by Bruno Fassino: http://www.brunildo.org/test/IEAbackima.html Regards Rainer