Title: fleemail's Replies | WordPress.org

---

# fleemail

  [  ](https://wordpress.org/support/users/fleemail/)

 *   [Profile](https://wordpress.org/support/users/fleemail/)
 *   [Topics Started](https://wordpress.org/support/users/fleemail/topics/)
 *   [Replies Created](https://wordpress.org/support/users/fleemail/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/fleemail/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/fleemail/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/fleemail/engagements/)
 *   [Favorites](https://wordpress.org/support/users/fleemail/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1039085)
 * Thanks man, this worked perfectly.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1039015)
 * Where would I change the home page id? to make the second option work?
 * Thanks for this help by the way
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1038919)
 * Any help? Here is my site again [http://www.flee-mail.com](http://www.flee-mail.com)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1038909)
 * Oh and the menu is generated with a wordpress function
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1038908)
 * the last knight here is my code from my header.php file
 *     ```
       <!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="menu">
       	<ul>
       		<li class="page_item <?php if ( is_home() ) { ?>current_page_item<?php } ?>"><a href="<?php bloginfo('url'); ?>"><?php _e('Home', 'elegant-grunge') ?></a></li>
       		<?php wp_list_pages('title_li=&depth=1'); ?>
       	</ul>
       	<div class="clear"></div>
       </div>
   
       <div id="header-wrap">
       <div id="header">
       	<div>
       		<h1><a href="<?php bloginfo('home') ?>"><?php bloginfo('name'); ?></a></h1>
       		<span id="blog-description"><?php bloginfo('description'); ?></span>
       	</div>
       </div>
       </div>
   
       <!-- end header -->
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with Static Homepage](https://wordpress.org/support/topic/issue-with-static-homepage/)
 *  Thread Starter [fleemail](https://wordpress.org/support/users/fleemail/)
 * (@fleemail)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/issue-with-static-homepage/#post-1038907)
 * WpBlogHost when I do that it defaults my home page back to the blog because there
   is no static page to link to

Viewing 6 replies - 1 through 6 (of 6 total)