help with ie6 problems

bennyboy79

New Member
hi there,

please can someone help with the css for a website i am designing. it looks and works fien in ff and ie7 but as far as ie6 goes, im pulling my hair out.

ive fixed the png transparency probs with a hack but cant get the menu to display properly aligned and it messes the rest of the website alignment up!

please help me

you can see the website here:

www.thepixelhouse.com/ferdi

thanks alot,
Ben
 

jnjc

New Member
I have had a quick look at the HTML and at least some of your problems are because there is some code in there to only include some tags if the browser is IE7. Your HTML reads:

<li><a href="http://www.thepixelhouse.com/ferdi/contact.html"><b>Contact/Order</b><!--[if IE 7]><!--></a><!--<![endif]--></li>

I change a couple of instances of this to remove the [if IE7] so that it looks like this:

<li><a href="http://www.thepixelhouse.com/ferdi/contact.html"><b>Contact/Order</b></a></li>

And things started to fall into shape....

I only tested with IE6 not FF or IE7 but it should put you on the right path...

HTH,
JC
 

jnjc

New Member
yeah i suppose, but most people if they have their updates on with have IE7

You'd be surprised at the amount of people who are still on six. Typically it tends to be people using their work machines where the I.T. management has made the conscious decision not to move to 7....
 
Top