Also, the “please wait” icon shows up constantly on the page of my posts, whether attempting to add in a URL for an image or not.
Having trouble with the Nicasio Dynamic Header BLOCKING my entire post area during editing or creating a new post also.
Could the Nicasio Dynamic Header error be responsible for all of the above? Please please please help if you can!!! Thank you!
]]>As it says in the topic title, the Nicasio Dynamic Header image doesn’t show on my posts page!
All other pages throughout my wordpress site work fine.
Anyone encountered this problem before or have a solution?
Thanks
]]>I adjusted the plugin code for the swf file stay 100% in its width, is working ok in all browsers except in IE, who read the file with its default width 1000px
somebody can help me?
]]><?php if(function_exists('show_media_header')){ show_media_header(); } ?>
goes in here;
<?php
$ua = $_SERVER['HTTP_USER_AGENT'];
if (!(ereg("Windows",$ua) && ereg("MSIE",$ua)) || ereg("MSIE 7",$ua)) {
echo '<' . '?' . 'xml version="1.0" encoding="' . get_option('blog_charset') .'"?>' . "\n";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes( 'xhtml' ); ?>>
<head profile="https://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<title><?php wp_title('',true); ?><?php if(wp_title('',false)) { ?> | <?php } ?><?php bloginfo('name'); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<?php
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
?>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link href="<?php echo get_stylesheet_directory_uri(); ?>/style.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 6]>
<script>
DD_belatedPNG.fix('img');
</script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="top_menu_div" class="menu-container clearfix">
<div id="top_content">
<span id="sitedesc"><?php bloginfo('description'); ?></span>
<?php wp_nav_menu( array( 'container_class' => 'menu-top', 'theme_location' => 'top_menu', 'fallback_cb' => '' ) ); ?></div>
</div>
<div id="header">
<div id="logo">
<?php
$h_img = get_header_image();
if($h_img) {
?>
<a href="<?php echo home_url(); ?>"><img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="<?php bloginfo('name'); ?>" /></a>
<?php } else { ?>
<div id="sitename"><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></div>
<?php } ?>
</div><!--// logo -->
<div id="header_search">
<?php get_search_form(); ?>
</div>
</div><!--// header -->
<div id="header_menu_div" class="menu-container clearfix"><?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'header_menu' ) ); ?></div>
<div id="wrap" class="clearfix">
It’s more then a little frustrating when you have no coding experience and the instructions are, understandably, this vague about where to drop it;
]]>Option 1 (Recommended): Simply drop the this line of code into your theme file that controls your header (usually header.php)
Note: The location to add this code can vary widely from theme to theme and depending on your theme’s css settings you may have to use Option 2 and modify the CSS of your theme **BACKUP ANY THEME FILES BEFORE MODIFYING**