Results 1 to 5 of 5

Hybrid View

  1. #1
    Join Date
    Oct 2006
    Posts
    6
    Plugin Contributions
    0

    Default internet explorer problems :( -- ie peekaboo

    I have a few odd things that are happening with ie and was wondering if anyone has had the same issues:

    1.clearing floats: on the home page the centerColumn is not expanding as it should. the background is black so the bottom products are in the black portion. i checked through my style sheet, and i did not explicitly set the height. i checked the source on the browser, and the <br class='clearBoth'/> is at the end of the final item.

    2.another ie bug: this one is much weirder. on some pages the product description is being printed in white. i explicitly set the centerColumn color to black. now it gets stranger. when i play around on the browser (going back and forth highlighting portions of the hidden text bits and pieces start to display). this is a new one for me.

    the site is http://www.alienmagictricks.com/

    any ideas would be awesome.

  2. #2
    Join Date
    Jul 2005
    Posts
    350
    Plugin Contributions
    0

    Default Re: internet explorer problems :(

    Without peeking into your code, I'd say there's something wrong in your css file. I noted the same odd highlighting behavior on your home page and the text near the copyright info is black on a black background as well. I have a few carts that are on black pages and they do not have this issue (I run IE 6) .

    If you want to have a look at what may be wrong, try this link:
    http://jigsaw.w3.org/css-validator/
    input the complete path to your css file and it will analyze it for you. Prepare to be bombed with errors and warnings because this page is very specific about what it feels is and is not valid css. Some of their warnings can be ignored (then again, some of the warnings could be about black text on a black background, so look carefully there too), but if there are ERRORS highlighted, that's where to begin.
    Ripper
    Oz Website Services
    www.oz-web.net

  3. #3
    Join Date
    Jul 2005
    Posts
    350
    Plugin Contributions
    0

    Default Re: internet explorer problems :(

    I found your first problem.... It didn't take too much digging, it's the first style section....
    Code:
    body {
     margin: 0;
     font-family: verdana, arial, helvetica, sans-serif;
     font-size: 62.5%;
     color: #000000;
     background-color: #000;
     }
    Notice your background color and your font color are both black. Also, while using 3 digit color codes will technically work, it's considered bad css. You should try to always use 6 digit color codes in your css files.
    Ripper
    Oz Website Services
    www.oz-web.net

  4. #4
    Join Date
    Jul 2005
    Posts
    350
    Plugin Contributions
    0

    Default Re: internet explorer problems :(

    Another text color problem:

    Code:
    #headerWrapper{
    background-color:#000;
    text-align:center;
    width:100%;
    }
    	
    #navColumnOneWrapper, #navColumnTwoWrapper{
    	background-color:#000;
    	padding-left:5px;
    	padding-right:5px;
    	} 
    
    #tagline {
    	color:#000000;
    	font-size: 2em;
    	text-align : center;
    	vertical-align: middle;
    	}
    Again, Tagline is text... Wrapper styles refer to the boxes the text is in. Both are black.
    Ripper
    Oz Website Services
    www.oz-web.net

  5. #5
    Join Date
    Oct 2006
    Posts
    6
    Plugin Contributions
    0

    Default Re: internet explorer problems :(

    Hi Ripper,
    Thanks a lot for taking the time out to look that over. It turned out to be the IE peekaboo bug.

 

 

Similar Threads

  1. Layout problems in Internet Explorer
    By showtime13 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 20 Jun 2011, 09:28 AM
  2. Internet Explorer problems
    By CP00 in forum General Questions
    Replies: 6
    Last Post: 28 Jan 2010, 11:34 PM
  3. Internet Explorer 8 printing problems
    By athena in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 17 Nov 2009, 10:20 PM
  4. Internet Explorer Viewing Problems
    By EricRBunn in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 15 Jun 2008, 11:49 PM
  5. Problems with internet explorer 7
    By sethstacey in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 30 Jan 2008, 06:44 PM

Posting Permissions

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