Internet Explorer

Forums Forums Menus Internet Explorer

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1251
    foundre
    Member

    Hey all… I am having a problem with the menu on my template with internet explorer it creates a gap.

    I am not sure how to explain so if you can, take a look at http://www.trickdrums.com/TWP on and off IE and see if you can see what I am talking about.

    #7904
    Anonymous
    Member

    I am also having some problems with IE. Is there some solution?

    #7905

    Your problem is probably caused by the following tag overwriting some of the CSS used in the menu:
    [code:34gqgdo4]<div id="newMenu">[/code:34gqgdo4]

    #7906
    foundre
    Member

    Well now I am getting the gap in all browsers.

    the newMenu DIV is simply:
    [code:1yad0wj8]#newMenu div {
    z-index:9999;
    }[/code:1yad0wj8]

    The header code is:
    [code:1yad0wj8]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title>
    <?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_search() ) { ?><?php echo $s; ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_page() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php the_time(‘F’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_tag() ) { ?><?php single_tag_title();?> | <?php bloginfo(‘name’); ?><?php } ?>
    </title>

    <?php elegant_grunge_the_favicon() ?>
    <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen" />
    <?php if ( get_option(‘header_image’) ) : ?>
    <style type="text/css">
    #header div {
    background: url(<?php echo get_option(‘header_image’) ?>) no-repeat center top;
    width: 100%;
    height: 100%;
    display: block;
    }
    #header * {
    display: none;
    }
    </style>
    <?php endif; ?>
    <!–[if IE]>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo(‘stylesheet_directory’); ?>/ie.css" />
    <style type="text/css">
    #footer #subscribe a {
    background:none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php bloginfo(‘template_url’)?>/images/rss.png’);
    }
    <?php if ( get_option(‘header_image’) ) : ?>
    #header div {
    background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo get_option(‘header_image’)?>’);
    }
    <?php endif; ?>
    </style>
    <![endif]–>

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />

    <?php echo get_option("extra_header") ?>

    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>

    <?php wp_head(); ?>

    </head>

    <?php
    if ( !defined(‘EG_BODY_CLASS’) && get_option(‘page_setup’) != ‘right-sidebar’ )
    define(‘EG_BODY_CLASS’, get_option(‘page_setup’));
    ?>

    <body <?php if ( defined(‘EG_BODY_CLASS’) ) echo ‘class="’.EG_BODY_CLASS.’"’; ?>>

    <div id="page">
    <div id="header-wrap">
    <div id="header">
       
    </div>
    </div>
    <div id="newMenu"><?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>
    </div>

    <!– end header –>[/code:1yad0wj8]

    The page is http://www.trickdrums.com/TWP/

    This is unfortunate because I wanted to launch today <img decoding=” title=”Sad” />

    Anyone have any ideas how to sort this out?

    #7907

    Some stab in the dark guesses as to how to fix it:

    [code:2mdr9xzn]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title>
    <?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_search() ) { ?><?php echo $s; ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_page() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php the_time(‘F’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_tag() ) { ?><?php single_tag_title();?> | <?php bloginfo(‘name’); ?><?php } ?>
    </title>

    <?php elegant_grunge_the_favicon() ?>
    <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen" />
    <?php if ( get_option(‘header_image’) ) : ?>
    <style type="text/css">
    #header div {
    background: url(<?php echo get_option(‘header_image’) ?>) no-repeat center top;
    width: 100%;
    height: 100%;
    display: block;
    }
    #header * {
    display: none;
    }
    </style>
    <?php endif; ?>
    <!–[if IE]>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo(‘stylesheet_directory’); ?>/ie.css" />
    <style type="text/css">
    #footer #subscribe a {
    background:none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php bloginfo(‘template_url’)?>/images/rss.png’);
    }
    <?php if ( get_option(‘header_image’) ) : ?>
    #header div {
    background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo get_option(‘header_image’)?>’);
    }
    <?php endif; ?>
    </style>
    <![endif]–>

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />

    <?php echo get_option("extra_header") ?>

    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>

    <?php wp_head(); ?>

    </head>

    <?php
    if ( !defined(‘EG_BODY_CLASS’) && get_option(‘page_setup’) != ‘right-sidebar’ )
    define(‘EG_BODY_CLASS’, get_option(‘page_setup’));
    ?>

    <body <?php if ( defined(‘EG_BODY_CLASS’) ) echo ‘class="’.EG_BODY_CLASS.’"’; ?>>

    <div id="page">
    <div id="header-wrap">
    <div id="header">
       
    </div>
    </div>
    </div>
    <div id="newMenu"><?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>

    <!– end header –>[/code:2mdr9xzn]

    [code:2mdr9xzn]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title>
    <?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_search() ) { ?><?php echo $s; ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_page() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php the_time(‘F’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_tag() ) { ?><?php single_tag_title();?> | <?php bloginfo(‘name’); ?><?php } ?>
    </title>

    <?php elegant_grunge_the_favicon() ?>
    <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen" />
    <?php if ( get_option(‘header_image’) ) : ?>
    <style type="text/css">
    #header div {
    background: url(<?php echo get_option(‘header_image’) ?>) no-repeat center top;
    width: 100%;
    height: 100%;
    display: block;
    }
    #header * {
    display: none;
    }
    </style>
    <?php endif; ?>
    <!–[if IE]>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo(‘stylesheet_directory’); ?>/ie.css" />
    <style type="text/css">
    #footer #subscribe a {
    background:none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php bloginfo(‘template_url’)?>/images/rss.png’);
    }
    <?php if ( get_option(‘header_image’) ) : ?>
    #header div {
    background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo get_option(‘header_image’)?>’);
    }
    <?php endif; ?>
    </style>
    <![endif]–>

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />

    <?php echo get_option("extra_header") ?>

    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>

    <?php wp_head(); ?>

    </head>

    <?php
    if ( !defined(‘EG_BODY_CLASS’) && get_option(‘page_setup’) != ‘right-sidebar’ )
    define(‘EG_BODY_CLASS’, get_option(‘page_setup’));
    ?>

    <body <?php if ( defined(‘EG_BODY_CLASS’) ) echo ‘class="’.EG_BODY_CLASS.’"’; ?>>

    <div id="page">
    <div id="header-wrap">
    <div id="header">
       
    </div>
    <div id="newMenu"><?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>
    </div>
    </div>

    <!– end header –>[/code:2mdr9xzn]

    [code:2mdr9xzn]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title>
    <?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_search() ) { ?><?php echo $s; ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_page() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php the_time(‘F’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_tag() ) { ?><?php single_tag_title();?> | <?php bloginfo(‘name’); ?><?php } ?>
    </title>

    <?php elegant_grunge_the_favicon() ?>
    <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen" />
    <?php if ( get_option(‘header_image’) ) : ?>
    <style type="text/css">
    #header div {
    background: url(<?php echo get_option(‘header_image’) ?>) no-repeat center top;
    width: 100%;
    height: 100%;
    display: block;
    }
    #header * {
    display: none;
    }
    </style>
    <?php endif; ?>
    <!–[if IE]>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo(‘stylesheet_directory’); ?>/ie.css" />
    <style type="text/css">
    #footer #subscribe a {
    background:none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php bloginfo(‘template_url’)?>/images/rss.png’);
    }
    <?php if ( get_option(‘header_image’) ) : ?>
    #header div {
    background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo get_option(‘header_image’)?>’);
    }
    <?php endif; ?>
    </style>
    <![endif]–>

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />

    <?php echo get_option("extra_header") ?>

    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>

    <?php wp_head(); ?>

    </head>

    <?php
    if ( !defined(‘EG_BODY_CLASS’) && get_option(‘page_setup’) != ‘right-sidebar’ )
    define(‘EG_BODY_CLASS’, get_option(‘page_setup’));
    ?>

    <body <?php if ( defined(‘EG_BODY_CLASS’) ) echo ‘class="’.EG_BODY_CLASS.’"’; ?>>

    <div id="page">
    <div id="header-wrap">
    <div id="header">
       
    <div id="newMenu"><?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>
    </div>
    </div>
    </div>

    <!– end header –>[/code:2mdr9xzn]

    If you sign up for [iurl=https://geek.hellyer.kiwi/services/premium-support/]Premium Support[/iurl]. I’ll setup a local page and hammer away at it until I get it lodged into place for you. I don’t have time to do that for free though sorry.

    #7908

    I misread your question. I don’t click that it was an IE specific problem.

    If you get the same problem even with something simple, like a simple rectangular block, then it’s probably something screwy in your theme. It will be fixable but will probably take quite some time to figure out so I’d only be able to do that as part of [iurl=https://geek.hellyer.kiwi/services/premium-support/]Premium Support[/iurl].

    #7909
    foundre
    Member

    Well the template looked great…then I installed the plugin causing this gap.  I have now deleted the plugin in hopes that I can fix the gap then re install it…but the gap is now not going away.

    The gap only appears on certain pages: http://www.trickdrums.com/TWP/gallery/

    But not others:
    http://www.trickdrums.com/TWP/

    #7910
    &quot;foundre&quot; wrote:
    Well the template looked great…then I installed the plugin causing this gap.  I have now deleted the plugin in hopes that I can fix the gap then re install it…but the gap is now not going away.

    The plugin can not cause that gap.

    &quot;foundre&quot; wrote:
    The gap only appears on certain pages: http://www.trickdrums.com/TWP/gallery/

    But not others:
    http://www.trickdrums.com/TWP/

    The plugin [b:2qxftwwy]is[/b:2qxftwwy] running on both of those pages though, so I’m a little confused !?

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.