Tue, 24 Oct 2006 IE 7 is officially released!
We urge every body to upgrade to the latest release of Internet Explorer which is less buggy than IE6.
Mon, 17 Jul 2006 Truly accessible dropdown menus
No more bloated dropdown menus . . .The Suckerfish dropdown menu is only a few lines of Javascript and pure html in page content.
The dropdown is truly accessable only list elements in the html
See the original article here .
We implemented it in an estate agents site Oliver Finn
Fri, 30 Jun 2006 IE CSS height element bug
Dont forget the IE CSS height bug.
If you specify an element of less than 10 pixels IE wont resize below this.
The way round this is to add overflow: hidden to your css allowing IE to resize to your specific dimension.
Thu, 01 Jun 2006 Specifying IE specific code
A useful in the transition from IE6 to IE7, and in overcoming the bugs in pre IE7
<!--[if IE 6]>
<link rel="StyleSheet" type="text/css"
href="styles/hacked.css">
<![endif]-->
<!--[if IE 7]>
<link rel="StyleSheet" type="text/css"
href="styles/correct.css">
<![endif]-->
<![if !IE]>
<link rel="StyleSheet" type="text/css"
href="styles/correct.css">
<![endif]>
This code only works in IE other browsers ignore it so we can target specific IE browsers.
Thu, 25 May 2006 IE no longer supported on MAC
One less headache, IE is no longer supported on the mac, so browser compatability has one less issue.
See here
Mon, 22 May 2006 Cross platform AJAX.
We found this very useful, simple to implement AJAX example , it could be adapted to almost anything, and IE friendly.
Mon, 15 May 2006 Internet Explorer 7, We all look forward to the rollout of this one
Microsoft have kindly fixed some of the CSS bugs in the new IE making act more like standard browsers, Will it be a nightmare changing our styles or will it make our life easier?
Wed, 10 May 2006 Internet Explorer, Runtime Error R6025 virtual Function call.
This CSS worked fine in other browsers but crashed IE.
#nav2{
width: 135px;
margin-top: 10px;
float: right;
}
#nav2 p {
width: 135px;
float: right;
height: 20px;
color: #666666;
font: 10px arial;
font-weight: bold;
text-align: right;
margin: 5px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
The problem was the float right in the p. This doesnt explain why it happen but it may help you to troubleshoot any problems you may have.
Fri, 28 Apr 2006 Broken CSS files. (CSS files stop working)
Be sure not to have any code above the character set declaration in a css file this will stop the styles working in Safari. Also make sure there are two line returns after the declaration, it can often stop your first style working