X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Background is wrong in IE6? (https://forum.x-cart.com/showthread.php?t=45811)

rageon75 02-24-2009 03:22 PM

Background is wrong in IE6?
 
Hello everybody. I was checking my website on different browsers to see if everything looked good and when I checked it on Internet Explorer 6 the background is completely shifted to the right? It is suppose to be completely black background. My questions is: Do I change something in the main.css file or the main.IE6.css file to make it look correct. Here is the website: www.designdoranne.com. I am really new at CSS so any help would be appreciated. Thanking everybody in advance.

Victor D 02-25-2009 03:29 AM

Re: Background is wrong in IE6?
 
there is white border in default main.IE6.css that brokes templates lookout.
find there
Code:

/* page container */
#page-container {
    height: 100%;
    border-left: 780px solid #ffffff;
    float: left;
    position: relative;
}
#page-container2 {
    float: left;
    margin-left: -780px;
    position: relative;
  height: 620px; /* bottom-expand */
}/* page container */


and change to
Code:

/* page container */
#page-container {
    height: 100%;
    border-left: 0px none;
    float: left;
    position: relative;
}
#page-container2 {
    float: left;
    margin-left: 0px;
    position: relative;
  height: 620px; /* bottom-expand */
}


rageon75 02-25-2009 08:40 AM

Re: Background is wrong in IE6?
 
That worked perfectly. Thank you so much! I really appreciate it.


All times are GMT -8. The time now is 02:38 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.