Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a problem with ie6 in this website:
http://www.corexpand.com/


In ie8 it is working good. And other browser it is working. How can I solve this problem?

Any one help me?

karthikeyan,
Bangalore
Posted
Updated 13-Jan-11 20:44pm
v4
Comments
pkarthionline 13-Jan-11 6:41am    
but i can't solve this problem,
any idea.
Vipin Kumar Mallaya G 13-Jan-11 6:42am    
Hope You used Tables for the placement of images and text if not then it will cause problem
pkarthionline 13-Jan-11 7:29am    
www.corexpand.com

In this page have a problem .

1 solution

Without knowing too much it is most likely a CSS issue. You may need to have separate CSS to ensure that your design displays correctly in older browsers. You can use markup like this to emplace a style sheet that has specific styles set for IE6:

XML
<!--[if IE 6]>
<link rel="stylesheet" href="Styles/IE6.css" type="text/css" media="screen" />
<![endif]-->


Make sure that it is placed after any other style sheet declarations. You can also have one for IE7 by changing IE 6 to 7.
 
Share this answer
 
Comments
R. Giskard Reventlov 13-Jan-11 8:02am    
How what?
thatraja 14-Jan-11 4:01am    
Good answer digitalman
R. Giskard Reventlov 14-Jan-11 4:33am    
Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900