Bei meinem Blog : http://pfotenspuren.de/catblog/ (noch im Aufbau) habe ich es mit jottliebs Hilfe :-D (bin Anfängerin) geschafft, die statische Seite "Impressum" aus den Seiten auszuschliessen und unten in der Sidebar wieder einzufügen.
Das Impressum ist nun aber verrutscht, es sollte bündig mit dem Punkt "Anmelden" sein, müsste also nach rechts versetzt werden, evtl. möchte ich es auch noch ein Stück nach unten verschieben.
Kann mir bitte jemand sagen, was ich wo ändern muss, hier mal meine Sidebar.php :
PHP
<div id="sidebar">
<ul>
<li><h2>Rubriken</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=1'); ?>
</ul>
</li>
<li><h2>Aktuelle Beiträge</h2>
<ul>
<?php wp_get_archives('type=postbypost&limit=5&format=html'); ?>
</ul></li>
<?php get_links_list('id'); ?>
<li><h2>Archiv</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_pages('title_li=<h2>Seiten</h2>&exclude=11'); ?>
<li><h2>Meta</h2>
<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>
<li><a href="http://wordpress-deutschland.org/" title="Deutsche WordPress Community">WordPress.de</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<li><a href="http://www.pfotenspuren.de/catblog/?page_id=11">Impressum</a></li>
<li>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>
<?php if(function_exists(wp_onlinecounter)) { wp_onlinecounter(); } ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<li><h2>Autor</h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
-->
</ul>
</div>
Alles anzeigen
Danke im Voraus!