Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 516
I've been thanked 27 times.
Offline
If you are using the * html hack to fix CSS coding in Internet Exploder, make sure to test on IE7. Some of the CSS errors still exist, but the hack to correct for them was "fixed". Just a warning from personal experience (recent)
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2857
I've been thanked 85 times.
Offline
Not had the chance to test it yet,
but i'm told the fix is
Code: css
*>html {
}
Have fun!
Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 516
I've been thanked 27 times.
Offline
nybc wrote:
I donīt care any longer about IE6 because it updated itself automatically?!
Good work from microsoft.
According to Google Analytics for my site, 69% of my Internet Exploder visitors are using IE6 still
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2857
I've been thanked 85 times.
Offline
Steven_A_S wrote:
nybc wrote:
I donīt care any longer about IE6 because it updated itself automatically?!
Good work from microsoft.According to Google Analytics for my site, 69% of my Internet Exploder visitors are using IE6 still
if you turn off automatic updates or have a copy of windows that is deemed not to be genuine - the update won't take place
Even on some computers that are running genuine copies of windows have yet to be updated.
I've even been shown a piece of software that allows both IE6 and IE7 to run on the same machine (used by a co-worker for development testing)
I'd also like to point out to nybc that the original post was not about caring for IE6, but to help fix CSS for IE7!
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2857
I've been thanked 85 times.
Offline
nybc wrote:
Good work from microsoft.
Seriously?
Do you have any idea how much of security breach this whole thing could have been?
There were security flaws in some early releases. You don't like viruses or Trojans forcing themselves onto your computer, do you? why feel differently about some software that could have been potentially dangerous?
aknet aka nybc says "Hello".
I didnīt worry about the 69% IE6 users, because I remembered how fast the IE7-update was done in our company and thought this would be elsewhere too. I never had troubles with the CSS in IE6, but Iīm not the big designer. I started to learn CSS2 at the end of the IE6-period and I think my decision was right.
(I had a look for that hack, but I never needed one and I couldnīt find sinful informations about it.)
I donīt care that much about security risks because I also use a Firewall and an anti-virus-software.
Microsoft is not my prefered operating system but I can handle it.
My opinion for this special case is, that IE7 will displace IE6 very soon and I have much to learn in this time, so I will shorten it at this point. Wrong?
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2084
I've been thanked 5 times.
Offline
Northie wrote:
Not had the chance to test it yet,
but i'm told the fix isCode: css
*>html {
}
Have fun!
if you don't mind me asking - what exactly does that fix ?
I mean what does it do ?
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2857
I've been thanked 85 times.
Offline
Mutilated1 wrote:
Northie wrote:
Not had the chance to test it yet,
but i'm told the fix isCode: css
*>html {
}
Have fun!if you don't mind me asking - what exactly does that fix ?
I mean what does it do ?
* html {
}
was used to give those styles to all html elements. usually to remove all padding and margins, do you don't have to worry about default margins of block level elements (lists and headings being major ones)
now IE 7 doesn't recognise * html { but will recognise *>html {
Member
From: York, England
Registered: 2005-11-04
Posts: 608
I've been thanked 11 times.
Offline
aknet aka nybc says "Hello".
Are we allowed more than 1 member account on SR?
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2857
I've been thanked 85 times.
Offline
griffinsbridge wrote:
aknet aka nybc says "Hello".
Are we allowed more than 1 member account on SR?
posting whore competition is over, so don't see why not - but then i'm not a mod or admin so can't really say!
Member
From: Pell City, Alabama USA
Registered: 2004-11-17
Posts: 2084
I've been thanked 5 times.
Offline
don't think its the same person anyway - I seem to remember one or the other of them introducing the other a couple months ago
TombOfTheMutilated.NET - Destroying The Minds of America's Youth Since 2001
New member
From: Nelson, BC - Canada
Registered: 2007-01-10
Posts: 8
I've been thanked 0 times.
Offline
Hello,
I've was having trouble with IE7 initially, because I was writting code for IE 5 & 6.
So most of pages I made worked well in all other browsers, but not in IE7
Here is my fix...
First I used to use this to make adjustments for IE 5 & 6 (Still do but now I use the new fix)
<!--[IF IE]--
etc....
Now I use
<!--[IF lte IE 6]--
and my pages work great..... in all browsers without any other coding changes.....
because IE 7 renders pages just like Firefox, Opera now
Later Howa
Member
From: San Antonio, TX
Registered: 2006-08-07
Posts: 516
I've been thanked 27 times.
Offline
the * html hack is a bit of CSS that most browsers ignore as it's considered invalid. But IE5.5 and IE6 do pay attention to them, so anything you put after * html would be processed only on those browsers. So say you had a menubar and wanted each of the blocks to be clickable instead of just the text. You would do something like:
#menubar a { display:block; padding:10px; border:1px solid #000000; }
but to fix IE, you may have to add:
* html #menubar a { height:1px; }
the height:1px is a trick to get IE to switch on "layout", and because it follows the * html, it will be ignored by any browser besides IE5.5 or IE6.
http://meineipadresse.de/netrenderer/index.php <--- compare IE6 and IE7 online
| Never |


