jump to navigation

CSS - IE7 inline-block Fix July 27 2011

Add : zoom: 1; *display:inline; to the CSS

Using Google Code to Fix Sticky Suckerfish

Don’t bother using the Google Code to fix the sticky suckerfish menus in IE7 (IE8 Compt. mode)

Just add the #nav li:hover attribute with {height: 1%;}, {background-position: 0 0;} or {position: static;}.

Sticky Sons of Suckerfish bug fixes

re : http://css-class.com/articles/explorer/sticky/

A few fixes for the sticky hover bug have appeared on various mailing lists or forums. This involves adding a new selector #nav li:hover to the CSS with either of these properties and values {height: 1%;}, {background-position: 0 0;} or {position: static;}.

IIS 7 Executing PHP using SSI (shtml) July 22 2011

On Apache, including PHP from within SHTML is easy.  Apache magically processes the included PHP file, however on IIS 7, the include just pulls in source code and displays it.

!– include virtual=”myfile.php”–  : DOESN’T WORK
The trick is to use the SSI for EXEC.

!–#exec cgi=”myfile.php”–  : DOES WORK