CSS is not loading for my site on IE7 for some unknown reason. Its working fine for IE8, chrome and mozilla. You can see the website at www.fineartsbaroda.com.
Not sure if it really makes a different but I've never put the full URL of the location of my CSS file in the href. I usually just do something like this; <link href="css/mainstyles.css" rel="stylesheet" type="text/css"> Code (markup): So yours would be; <link href="includedfiles/default.css" rel="stylesheet" type="text/css"> Code (markup): Let me know if that works.
Looks like there are some bugs in your css border-top: 1px #111212 solid; border-bottom: 1px #B7BEC0 solid; border-left: 1px #111212 solid; border-right: 1px #B7BEC0 solid; margin: 1px #1B1C1C solid; Code (markup): They should all read 1px solid #colorvalue. There are some unnecessary spaces in your code, particulary the IE filters in fancybox-ie6 You have filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src= '/img/jquery_fancybox/fancy_close.png' , sizingMethod= 'scale' ); Code (markup): remove the spaces filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/jquery_fancybox/fancy_close.png', sizingMethod='scale'); Code (markup): Test your code via CSS validator. Remember IE is less forgiving than other browsers with broken code.