---
And then, after the upload of the theme on my wordpress directory, I've seen that every post has two lines over the title and one under the post:
* previous next
and (over previous next)
** navigazione articolo (maybe surfing article - I'm not sure how is the original english line)
and, last line of the page (under the post)
*** comment closed (since I've disabled the option to post comments for some articles)
How can I delete all these lines? Is there a way to do it working on my .ttr-file?
Maybe it can help some other user: googling I've found how to delete those lines....
* and ** > on single.php file, I had to delete
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span>
*** > on comment.php file, I had to delete
<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyeleven' ); ?></p>
:D
Now I just need help for my centering-question.... any idea?
;)