Results 1 to 6 of 6

Thread: Ubuntu website does not display correctly

  1. #1
    Join Date
    Aug 2007
    Beans
    8
    Distro
    Ubuntu 9.10 Karmic Koala

    Ubuntu website does not display correctly

    I'm using WinXP and IE6 and the Ubuntu website does not display correctly - it looks quite unprofessional and should be fixed.

  2. #2
    Join Date
    Aug 2006
    Beans
    230
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Ubuntu website does not display correctly

    Could you provide a screenshot?

  3. #3
    Join Date
    Nov 2006
    Location
    Vienna, Austria
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Ubuntu website does not display correctly

    I just fired up ie6 in Ubuntu and I get what you mean, the borders don't align properly, was that what you meant?
    Recommended Resources: Ubuntu Linux Resources

  4. #4
    Join Date
    Jan 2007
    Beans
    153
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Ubuntu website does not display correctly

    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.

  5. #5
    Join Date
    Jul 2007
    Location
    India
    Beans
    147
    Distro
    Ubuntu

    Re: Ubuntu website does not display correctly

    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
    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
    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!

  6. #6
    Join Date
    Sep 2007
    Location
    Baton Rouge, Louisiana
    Beans
    0

    Re: Ubuntu website does not display correctly

    Its ubuntu's way of saying "Use Firefox please"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •