Raby – Thanks for the quick response! As I look at the header.php file, this is what I see:
<?php
global $doctype;
global $class;
?>
<!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">
<head>
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
<style type="text/css">
/*<![CDATA[*/
.home.page.page-id-43.page-template.page-template-showcase-php #wrap #content {
background-color: #FEFEFE;
}
/*]]>*/
</style>
<!--[if lt IE 7 ]> <html class="ie6" xmlns="https://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" > <![endif]-->
<!--[if IE 7 ]> <html class="ie7" xmlns="https://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" > <![endif]-->
<!--[if IE 8 ]> <html class="ie8" xmlns="https://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" > <![endif]-->
<!--[if IE 9 ]> <html class="ie9" xmlns="https://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" > <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><!--<![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>- askbluestone.com</title>
<!-- //////// Favicon //////// -->
<link href="<?php echo get_template_directory_uri(_layout/images/favicon.ico); ?>/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<script type="text/javascript">
var themePath = '<?php echo get_template_directory_uri(); ?>';
var themeCufon = '<?php echo get_option( EWF_SETUP_THNAME.'_cufon', 'true'); ?>';
var themeSliderTimeout = <?php echo get_option( EWF_SETUP_THNAME.'_slider_timeout', '5000'); ?>;
var msg_newsletter_error = '<?php echo __('please enter a valid email...', EWF_SETUP_THEME_DOMAIN); ?>';
var msg_newsletter_label = '<?php echo __('subscribe to newsletter...', EWF_SETUP_THEME_DOMAIN); ?>';
</script>
<?php wp_head(); ?>
</head>
It seems that style block IS inside the <head></head> tag.
I did try to pull it out and remove it completely as well, with no success.
I wonder if it isn;t an issue with the “wrap” measurement or the content within the wrap as the footer has the same alignment issue.
I also tried adding this to the very first line of the header.php document:
<!DOCTYPE html>
But it displayed on the site, so I don;t think that was right.
Thanks again for the help. Any other suggestions?