Hallo,
ich habe eine Frage zum "pmode"-Layout:
Es geht um diese Seite: Home : Tischfussball Events
In der Sidebar sind die letzten Posts ("letzte Events") aufgeführt.
Bei den Überschriften der Posts wird jeweils die erste Zeile etwas eingerutscht. Ich finde leider nicht die Stelle in den diversen php-Dateien wo ich das ändern kann.
Kann mir jemand weiter helfen?
Das hier ist die Sidebar.php
PHP
<div class="sidenav">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
<h1>Recent Enteries</h1>
<ul>
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a> - <?php the_time('m-d-Y') ?></small></li>
<?php endwhile;?>
</ul>
<div class="divider"></div>
<h1><?php _e('Archives'); ?></h1>
<ul><?php wp_get_archives('type=monthly&show_post_count=true'); ?></ul>
<div class="divider"></div>
<h1><?php _e('Tags'); ?></h1>
<ul>
<?php
if (function_exists('wp_list_categories'))
wp_list_categories('title_li=&show_count=1');
else
wp_list_cats('optioncount=1');
?>
</ul>
<div class="divider"></div>
<h1><?php _e('Pages'); ?></h1>
<ul><?php wp_list_pages('title_li=' ); ?></ul>
<div class="divider"></div>
<h1><?php _e('Feed on RSS'); ?></h1>
<ul class="feeds">
<li>
<a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Posts Feed'); ?>"><?php _e('Posts Feed'); ?></a>
</li>
<li>
<a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('Posts Feed'); ?>"><?php _e('Comments Feed'); ?></a>
</li>
</ul>
<div class="divider"></div>
<h1><?php _e('Meta'); ?></h1>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
<div class="divider"></div>
<?php endif; ?>
</div><!-- end id:sidebar -->
<div class="clearer"><span></span></div>
</div>
Alles anzeigen