Results 1 to 7 of 7
  1. #1
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default IE Compatibility Issues

    On my new site..

    WEBSITE

    Does anyone know why in IE8 non compatible mode the red bullet points on the navigation tabs are too far to the left, and in compatibility mode they vanish - yet in Chrome, FF etc they all look fine and line up correctly.

    Any way I can fix this?

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,911
    Plugin Contributions
    96

    Default Re: IE Compatibility Issues

    You could start by fixing the errors you have in your markup (http://validator.w3.org/check?verbos...rkits.co.uk%2F), that's the leading cause of cross-browser display differences.

  3. #3
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: IE Compatibility Issues

    How do I actually fix those errors when the code doesnt actually look like that?

    For instance, the WC3 page says the line is...

    <li id=""><a href="index.php">Home</a></li>

    ...when the real source is

    <li id="<?php echo $active;?>"><a href="index.php"><?php echo TOP_MENU_HOME;?></a></li>

  4. #4
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: IE Compatibility Issues

    Fixed it, replaced the bullets with GIFS

  5. #5
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

    Default Re: IE Compatibility Issues

    I know you didn't ask for comments on the site, but, as great as it looks (excellent design job) that awful music drives me (and, I'm sure, others) away within seconds.

  6. #6
    Join Date
    Nov 2009
    Location
    UK
    Posts
    1,090
    Plugin Contributions
    0

    Default Re: IE Compatibility Issues

    The music is part of the Motorola Video. Im the sort of person, that when I see a video running, I expect to hear something, so If I didnt, id think there might be a fault.

    End of the day they can always turn it down, or off ;)

  7. #7
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,911
    Plugin Contributions
    96

    Default Re: IE Compatibility Issues

    Quote Originally Posted by dgent View Post
    How do I actually fix those errors when the code doesnt actually look like that?

    For instance, the WC3 page says the line is...

    <li id=""><a href="index.php">Home</a></li>

    ...when the real source is

    <li id="<?php echo $active;?>"><a href="index.php"><?php echo TOP_MENU_HOME;?></a></li>
    You could try making the following edit so that you don't have an empty id="" (which is what the validator is complaining about):

    Code:
    <li<?php echo !empty($active) ? ' id="' . $active . '"' : ''; ?>"><a href="index.php"><?php echo TOP_MENU_HOME;?></a></li>

 

 

Similar Threads

  1. IE7 and older compatibility issues
    By wenlaat in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 20 Jan 2012, 04:35 PM
  2. Moved Site - Compatibility Issues?
    By janellez in forum Upgrading from 1.3.x to 1.3.9
    Replies: 22
    Last Post: 2 Aug 2011, 04:32 AM
  3. Add On modules - are there compatibility issues with these?
    By atiqkhan in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 29 Jul 2010, 06:10 AM
  4. Browser compatibility issues useing IE
    By Turtleman in forum General Questions
    Replies: 2
    Last Post: 29 Jan 2007, 02:56 PM
  5. Browser compatibility issues
    By Rhitty in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 15 Jan 2007, 01:38 AM

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