PDA

View Full Version : Ubuntu website does not display correctly



fluppet
September 21st, 2007, 11:41 AM
I'm using WinXP and IE6 and the Ubuntu website does not display correctly - it looks quite unprofessional and should be fixed.

mindtrick
September 21st, 2007, 11:43 AM
Could you provide a screenshot?

PartisanEntity
September 21st, 2007, 11:44 AM
I just fired up ie6 in Ubuntu and I get what you mean, the borders don't align properly, was that what you meant?

the_darkside_986
September 21st, 2007, 01:26 PM
Why not use IE7? It looks fine in IE7 on WinXP SP2 here. Also IE7 seems to be more standards-compliant because I was trying to use some outdated html code in a project and it wouldn't display correctly in IE7 until I used CSS or something. (I can't remember what I was doing, something to do with tables I think.)

Also there are obviously security problems with IE6. My dad's PC got infected all the time until I upgraded it to SP2 and IE7 instead of 6.

mridkash
September 21st, 2007, 07:18 PM
I knew of that problem, actually I faced it in my own website design.

But it was corrected soon.

The problem that I figured out is with relative positioning in CSS. IE6 doesn't seem to handle relative positioning correctly.

The CSS for this website contains this code


#container {
position:relative;
background-color:#fff;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-left-repeat.jpg);
background-repeat:repeat-y;
background-position:left;
margin:0 1%;
padding:0 0 0 14px;
}
#bg-left {
position:absolute;
top:0;
left:0;
width:14px;
height:665px;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-left.jpg);
background-repeat:no-repeat;
background-position:top left;
z-index:6;
}

#bg-right {
position:absolute;
top:0;
right:0;
width:13px;
height:665px;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-right.jpg);
background-repeat:no-repeat;
background-position:top right;
z-index:6;
}Somebody may try to solve this problem with this modified code

#container {
background-color:#fff;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-left-repeat.jpg);
background-repeat:repeat-y;
background-position:left;
margin:0 1%;
padding:0 0 0 14px;
}
#bg-left {
position:absolute;
top:0;
left:1%;
width:14px;
height:665px;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-left.jpg);
background-repeat:no-repeat;
background-position:top left;
z-index:6;
}

#bg-right {
position:absolute;
top:0;
right:1%;
width:13px;
height:665px;
background-image:url(http://ubuntuforums.org/imagesorig/ub2/page-border-right.jpg);
background-repeat:no-repeat;
background-position:top right;
z-index:6;
} Here is the original post where i posted my problem
http://ubuntuforums.org/showthread.php?t=549000

Only if somebody can try it!

BigBud
September 21st, 2007, 07:23 PM
Its ubuntu's way of saying "Use Firefox please"