header image alignment
-
Hi,
Trying to align this header image on my page.
If I put in align=”center” or align=”left” its lining up with the right side of posts on the page.
And if i put in align=”right” then it lines up with the left side of the posts and only half of the image shows up on the left side of the page.
I’ve posted the header.php below.
Any help at all would be really, really appreciated.<!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(); ?>> <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title(':', true, 'right'); ?> <?php bloginfo('name'); ?></title> <!--[if gte IE 7]><!--> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" charset="utf-8" /> <!-- <![endif]--> <!--[if IE 7]> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style_ie.css" type="text/css" media="screen" charset="utf-8" /> <![endif]--> <!--[if IE 6]> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_directory'); ?>/styles_ie6.css" /> <![endif]--> <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'); ?>" /> <script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery-1.3.2.min.js" charset="utf-8"> </script> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="siteWrapper"> <img src="https://www.bmxfu.com/images/zine2/coversmall.jpg" border="0" align="center" /> <div id="mainNav"> <ul> <?php wp_list_pages('title_li=&depth=1'); ?> </ul> </div> <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <div id="subNav"> <ul> <?php echo $children; ?> </ul> </div> <?php } ?> <div id="siteDescription"> <?php bloginfo('description'); ?> </div>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘header image alignment’ is closed to new replies.