Title: MrCrow's Replies | WordPress.org

---

# MrCrow

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPtouch - Make your WordPress Website Mobile-Friendly] Only white page on mobile devices](https://wordpress.org/support/topic/only-white-page-on-mobile-devices/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/only-white-page-on-mobile-devices/#post-4489933)
 * Thank you for the post. I did create a ticket there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [WPTouch Pro only white page](https://wordpress.org/support/topic/wptouch-pro-only-white-page/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/wptouch-pro-only-white-page/#post-4489420)
 * Reposting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Popup] [Plugin: WP Super Popup] Page content bleeding through](https://wordpress.org/support/topic/plugin-wp-super-popup-page-content-bleeding-through/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wp-super-popup-page-content-bleeding-through/#post-2958092)
 * Fixed. For anyone else who has this problem, mine was caused by a z-index on 
   one of my divs. Once I removed that, it didn’t bleed through.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Showing parent and children page titles](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/#post-2684150)
 * SOLVED with below code:
 *     ```
       <?php get_header(); ?>
       		<div id="main">
       			<?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?><!-- [breadcrumb] -->
       			<div id="subnavtitle"><h2><?php $parent_title = get_the_title($post->post_parent); echo $parent_title; ?></h2></div>
       			<div id="contenttitle"><h2><?php the_title(); ?></h2></div>
       			<div id="subnav"><?php include(TEMPLATEPATH."/sidebar.php");?></div>
       			<?php if (have_posts()) : ?>
       			<?php while (have_posts()) : the_post(); ?>
       			<div id="content"><p><?php the_content(); ?></p></div>
       			<?php endwhile; ?>
       			<?php endif; ?>
       			<?php include(TEMPLATEPATH."/sidebar2.php");?>
       		</div>
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Showing parent and children page titles](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/#post-2684149)
 * Esmi,
 * I fixed everything moving to the right, but it still shows the parent title under
   both divs. Here is the code:
 *     ```
       <?php get_header(); ?>
       		<div id="main">
       			<?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?><!-- [breadcrumb] -->
       			<?php if( !$post->post_parent ) :?><div id="subnavtitle"><h2><?php the_title(); ?></h2></div>
       			<?php else: ?><div id="contenttitle"><h2><?php the_title(); ?></h2></div>
       			<?php endif;?>
       			<div id="subnav"><?php include(TEMPLATEPATH."/sidebar.php");?></div>
       			<?php if (have_posts()) : ?>
       			<?php while (have_posts()) : the_post(); ?>
       			<div id="content"><p><?php the_content(); ?></p></div>
       			<?php endwhile; ?>
       			<?php endif; ?>
       			<?php include(TEMPLATEPATH."/sidebar2.php");?>
       		</div>
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Showing parent and children page titles](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/showing-parent-and-children-page-titles/#post-2684029)
 * Thanks esmi! When I entered that code, it shifted everything to the right, like
   my sidebar menu and content. Here’s code:
 *     ```
       <?php get_header(); ?>
       	<div id="main">
       			<div class="breadcrumbs">
       				<?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
       			</div> <!-- [breadcrumb] -->
       			<?php if( !$post->post_parent ) :?><div id="subnavtitle"><h2><?php the_title(); ?></h2></div>
   
       			<?php else: ?><div id="contenttitle"><h2><?php the_title(); ?></h2></div>
       			<?php endif;?>
       		<div id="subnav">
       			<?php include(TEMPLATEPATH."/sidebar.php");?>
       		</div>
   
       	<div id="content">
       		<?php while ( have_posts() ) : the_post(); ?>
       			<?php get_template_part( 'content', 'page' ); ?>
       		<?php endwhile; // end of the loop. ?>
       	</div><!-- #content -->
       <?php include(TEMPLATEPATH."/sidebar2.php");?>		
   
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add nav menu](https://wordpress.org/support/topic/how-to-add-nav-menu-1/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-to-add-nav-menu-1/#post-2432011)
 * Ty esmi.
 * I’ll make a child theme then.
 * Can anyone tell me how to make a top nav bar where the site-description is located?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add nav menu](https://wordpress.org/support/topic/how-to-add-nav-menu-1/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-to-add-nav-menu-1/#post-2431960)
 * And how do I create the menu where the site description is located?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add nav menu](https://wordpress.org/support/topic/how-to-add-nav-menu-1/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-to-add-nav-menu-1/#post-2431959)
 * So should I go about copying all the files from twenty ten or create a child 
   theme? What’s the best practice I guess is what I’m asking.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add nav menu](https://wordpress.org/support/topic/how-to-add-nav-menu-1/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-to-add-nav-menu-1/#post-2431957)
 * I’m not changing the theme itself. I created a new child theme and copied over
   all the files from twenty ten.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Convert existing CMS site to WordPress](https://wordpress.org/support/topic/convert-existing-cms-site-to-wordpress/)
 *  Thread Starter [MrCrow](https://wordpress.org/support/users/mrcrow/)
 * (@mrcrow)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/convert-existing-cms-site-to-wordpress/#post-2429460)
 * Will I be able to use any coding for it? Like the old php and html and css?

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