IE conditional comments not working when condition is met?

Hello,
This IE Conditonal Comment is a snippet of a page I made. However, when I run or view the page in IE8, it does not execute or not ignore the IE conditional code.

Here it is:

<!--[if lt IE 9>
    		<style type="text/css">
    		h2{
    			padding-top:0px;
    			margin-top:10px;
    		}
    		#noJs{
    			margin:0 auto;
    			text-align:center;
    		}
    		#footer, #help{
    			display:none;
    		}
    		.bold{
    			font-weight:700;
    		}
    		.left{
    			float:left;
    			text-align:left;
    		}
    		.right{
    			float:right;
    			text-align:right;
    		}
    		noscript, noscript *{
    			display:none !important;
    		}
    	</style>
    <![endif]-->

Am I doing something obviously or stuipdly wrong? Because I have been trying and trying to think why this is not working…

Thanks for all the help in Advance,
Team 1504

Your missing the closing ] bracket on the first line.

<!--[if lt IE 9]>

:slight_smile:

wow. thank you. I knew it had to be something stupid… ?

I think its just one of theose obvious things were I had been looking at it too long to see it. So I needed a new pair of eyes :slight_smile:

Yeah it took me a few to see it too. Glad you got it sorted out. :slight_smile: