- This topic has 7 replies, 3 voices, and was last updated 14 years, 9 months ago by imported_Ryan.
-
AuthorPosts
-
February 5, 2010 at 9:23 pm #1251foundreMember
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.
February 5, 2010 at 10:44 pm #7904AnonymousMemberI am also having some problems with IE. Is there some solution?
February 6, 2010 at 8:46 pm #7905imported_RyanMemberYour problem is probably caused by the following tag overwriting some of the CSS used in the menu:
[code:34gqgdo4]<div id="newMenu">[/code:34gqgdo4]February 19, 2010 at 6:23 pm #7906foundreMemberWell 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 ” title=”Sad” />
Anyone have any ideas how to sort this out?
February 19, 2010 at 8:53 pm #7907imported_RyanMemberSome 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.
February 19, 2010 at 8:55 pm #7908imported_RyanMemberI 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].
February 19, 2010 at 11:03 pm #7909foundreMemberWell 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/February 20, 2010 at 2:22 pm #7910imported_RyanMember"foundre" 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.
"foundre" 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 !?
-
AuthorPosts
- You must be logged in to reply to this topic.