Header not displaying properly using plugins
-
I’m using the Atahualpa Theme and I modified the header.php file so that it displays at the top: Dynanmic Headers plugins, then my company logo, and finally Wp-Cycle plugin. If your web browser screen is maximized then everything looks fine. If you scale the browser to a certain point then it moves the Wp-Cycle plugin to the next line below Header plugin and logo picture.
Any help would be appreciated. Thanks
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>
<head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”X-UA-Compatible” content=”IE=EmulateIE7″ />
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<?php /* if index.php or another page template (copied from index.php) was not used
(i.e. by a plugin such as WPG2), the global $bfa_ata would be empty */
global $bfa_ata; if ($bfa_ata == “”)
include_once (TEMPLATEPATH . ‘/functions/bfa_get_options.php’); ?>
<?php include (TEMPLATEPATH . ‘/functions/bfa_meta_tags.php’); ?>
<?php if ($bfa_ata[‘favicon_file’] != “”) { ?><link rel=”shortcut icon” href=”<?php echo get_bloginfo(‘template_directory’); ?>/images/favicon/<?php echo $bfa_ata[‘favicon_file’]; ?>” /><?php } ?>
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”<?php bloginfo(‘name’); ?> Atom Feed” href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<script type=”text/javascript” src=”<?php echo get_bloginfo(‘template_directory’); ?>/js/ruthsarian_utilities.js”></script>/* start of my code in questions
<style type=”text/css”>
<!–
#leftbar {
float: left;
width: 200px;
}
#centerbar {
float: left;
width:600px;
height:160px;
}
#rightbar {
float: left;
width:300px;
height:160px;
overflow: hidden;
}
#footer {
clear: both;
left: 0px;
width: 100%;
height: 1px;
}
–>
</style>
<div id=”leftbar”><?php show_media_header()?></div>
<div id=”centerbar”> <img src=”https://www.incontrolhome.com/blog/wp-content/header-images/static/ictlogobar2.jpg” alt=”In Control Technology” title=”In Control Technology” /></div>
<div id=”rightbar”><?php wp_cycle()?></div>
<div id=”footer”></div>*/ end of my code in questions
<script type=”text/javascript”>
<!–
if ( ( typeof( sfHover ) ).toLowerCase() != ‘undefined’ ) { event_attach( ‘onload’ , function () {
<?php if (strpos($bfa_ata[‘configure_header’],’pages’)!==FALSE) { ?>sfHover( ‘rmenu2’ );<?php } ?>
<?php if (strpos($bfa_ata[‘configure_header’],’cats’)!==FALSE) { ?>sfHover( ‘rmenu’ );<?php } ?>
if (document.getElementById(“recent-comments”) != null) { sfHover( ‘recent-comments’ ); }
if (document.getElementById(“bfa-recent-comments”) != null) {sfHover( ‘bfa-recent-comments’ ); }
} ); }
//–>
</script>
- The topic ‘Header not displaying properly using plugins’ is closed to new replies.