Probably just some margin/padding problems in IE 6.
Does the page display correctly in IE7? (I don’t have it installed on this machine).
Also, in IE6, I noticed that your header is displaying as a slightly different color than in Mozilla. Could have something to do with it being a PNG format.
Okay, I’m actually pretty sure this is what’s happening now (after looking through your source).
1. You have no <body> tag. Look at your main page source, you’ll see after the </head> tag, a list begins. No <body> tag at all.
2. You have two <head> sections. Near the bottom of the source is a second style sheet stuck between <head> & </head>. You need to remove this and place it at the top of the document (header.php).
Other than those two things, the CSS and page source look dandy.
Thread Starter
jss
(@jss)
unfortunately in IE7 it’s also looks bad. have you any idea what i should change? or just tell me where (what file) i should looking for error
header is small problem 🙂
Have you changed any of the theme files at all?
It’d be hard to tell you exactly what files to edit, but if it’s just on the default page, it’s probably in index.php where you’re getting some problems.
You definitely need to edit header.php and make sure there’s a <body> tag after the <head> ends though.
Thread Starter
jss
(@jss)
sorry. when i posted my last reply I didn’t notice your reply. when I repair code-structure nothing happend.
the problem was in style.css with “margin” (as you wrote in 1st post).
I wrote in code this:
.headernav {
margin: auto;
in place of:
.headernav {
margin: (some numbers);
and now page displayed good in IE! yoppe :))
thx for interest my problem. bye!