• Hi
    The theme is awsome !!!
    I have a litlle question, Could you tell me how (in case that it was possible) I can remove the title in each page ?
    (like if you go to news cliking in the menu bar, the first thing that your read is NEWS, is redundant in that case)
    Tanks for your time

Viewing 3 replies - 1 through 3 (of 3 total)
  • You would have to either delete the title code from the page.php file or write some CSS to hide it.

    .page .entry-title {
       display: none;
    }

    I’m having the same issue.

    I see the

    .page .entry-title {
       display: none;
    }

    but I don’t know where to put it exactly on the Twenty-Eleven Theme.

    I am posting my code below:

    * @since Twenty Eleven 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	<header class="entry-header">
    .entry-header {
    display: none;
    }
    		<h1 class="entry-title"><?php the_title(); ?></h1>
    	</header><!--
    .entry-header {
    display: none;
    } -->
    
    	<div class="entry-content">
    		<?php the_content(); ?>
    		<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
    	</div><!-- .entry-content -->
    	<footer class="entry-meta">
    		<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
    	</footer><!-- .entry-meta -->
    </article><!-- #post-<?php the_ID(); ?> -->

    That CSS I provided was for Arcade Basic, not Twenty-Eleven.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Title’ is closed to new replies.