Hey guys,
i have a really big problem.
if you go to my homepage with internet explorer, the page is displayed on the left side.
with ANY (ff,chrome,safari,opera) other browser my page is display correct in the middle of the screen.
http://www.changed.de
to find the issue i reuploaded the original stylesheet.css . but the problem is still there.
it would be really nice if someone could help me.
Thanks in advance!
Problem lies with css. IE does not do well with margin: auto; so you gotta fix that.
Hey,
thanks for your answer.
i've changed now many margins to auto, but if think it should be this part!?:
/* layout */
#container {
width: 980px;
margin-left: auto;
margin-right: auto;
text-align: left;
But nothing happens.
in my stylesheet folder there are two additional ccs files:
ie6.css and i7.css
do i need a i8.css!?!?
i need to solve this problem till friday.
thank you so much.
tschiff
thanks for your answer.
i've changed now many margins to auto, but if think it should be this part!?:
/* layout */
#container {
width: 980px;
margin-left: auto;
margin-right: auto;
text-align: left;
But nothing happens.
in my stylesheet folder there are two additional ccs files:
ie6.css and i7.css
do i need a i8.css!?!?
i need to solve this problem till friday.
thank you so much.
tschiff
Hey,
after hours of searching i know, that its not css.
its the ie! the ie goes in the quirksmode!
i get this error if check the page with ie.
Line 1, Column 1: character "" not allowed in prolog
<?xml version="1.0" encoding="UTF-8"?>
how can i solve this problem?
thanks in advance!
after hours of searching i know, that its not css.
its the ie! the ie goes in the quirksmode!
i get this error if check the page with ie.
Line 1, Column 1: character "" not allowed in prolog
<?xml version="1.0" encoding="UTF-8"?>
how can i solve this problem?
thanks in advance!
Hi,
I had the same problem and then found the solution by copying and pasting the code below into the top of ie7.css, ie8.css and ie9.css.
When saved and then tested both on my ie8 and also using http://netrenderer.com/index.php to test the other ie versions this moved the page sligthly off the left hand side, sufficient to show viewers that they are not missing anything. If you increase the px value higher than 25 then you run the risk of the page disappearing off the right hand side of the page on browsers set to 1024 resolution.
Hope this helps.
I had the same problem and then found the solution by copying and pasting the code below into the top of ie7.css, ie8.css and ie9.css.
When saved and then tested both on my ie8 and also using http://netrenderer.com/index.php to test the other ie versions this moved the page sligthly off the left hand side, sufficient to show viewers that they are not missing anything. If you increase the px value higher than 25 then you run the risk of the page disappearing off the right hand side of the page on browsers set to 1024 resolution.
Code: Select all
/* layout */
#container {
width: 980px;
margin-left: 25px;
margin-right: 50px;
text-align: left;
}
#column-left {
float: left;
width: 180px;
}
#column-right {
float: right;
width: 180px;
}
#content {
min-height: 400px;
margin-bottom: 25px;
}
#column-left + #column-right + #content, #column-left + #content {
margin-left: 195px;
}
#column-right + #content {
margin-right: 195px;
}
Who is online
Users browsing this forum: No registered users and 22 guests