Hallo an alle,
vielleicht wurde mein problem ja schon irgendwo einmal erörtert, aber ich habe nichts gefunden, es scheint eigentlich ganz einfach zu sein (php grr :-D)
Es geht darum, wie ich es schaffen kann, dass sich diese zeile (source vom browser)
Code
<li class="pagenav">Pages<ul><li class="page_item"><a href="http://tips4blogger.eu/?page_id=3" title="About">About</a></li>
<li class="page_item"><a href="http://tips4blogger.eu/?page_id=5" title="test">test</a></li>
</ul></li> <li id="linkcat-1"><h2>Blogroll</h2>
so verhält dass die pagenav formatierung gleich der anderen oQUOTE]berpunkte in der liste ist
und so stelle ich es mit vor
Code
<li class="pagenav"><h2>Pages</h2><ul><li class="page_item"><a href="http://tips4blogger.eu/?page_id=3" title="About">About</a></li>
<li class="page_item"><a href="http://tips4blogger.eu/?page_id=5" title="test">test</a></li>
</ul></li> <li id="linkcat-1"><h2>Blogroll</h2>
<ul>
weiss nicht o bes möglich ist aber zur sicherheit poste ich noch meine sidebar.php
PHP
<div id="center">
<div id="menu">
<ul>
<?php wp_list_pages('title_li=Pages'); ?>
<?php get_links_list(); ?>
</li>
<li id="categories"><h2>
<?php _e('Categories'); ?></h2>
<ul>
<?php wp_list_cats(); ?>
</ul>
</li>
<li id="search"><h2>
<label for="s"><?php _e('Search'); ?></label></h2>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div>
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" value="<?php _e('Search'); ?>" />
</div>
</form>
</li>
<li id="archives"><h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li id="meta"><h2><?php _e('Meta'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('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="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
<?php wp_meta(); ?>
</ul>
</li>
</ul>
</div>
</div>
Alles anzeigen
ach ja mein css code für diesen bereich
Code
#linkcat-1 h2 {
font-family:"Arial", Arial;
font-weight:bold;
color:#201818;
font-size: 16px;
margin-bottom: 3px;
line-height: 20px;
padding:5px;
background:#7BBEDE;
}
#categories h2 {
font-family:"Arial" Arial;
font-weight:bold;
color:#201818;
font-size: 16px;
margin-bottom: 3px;
line-height: 20px;
background:#7BBEDE;
padding:5px;
}
#pagenav h2{
font-family:"Arial", Arial;
font-weight:bold;
color:#201818;
font-size: 16px;
margin-bottom: 3px;
line-height: 20px;
padding:5px;
background:#7BBEDE;
}
#search h2{
font-family:"Arial", Arial;
font-weight:bold;
color:#201818;
font-size: 16px;
margin-bottom: 3px;
line-height: 20px;
padding:5px;
background:#7BBEDE;
}
#archives h2{
font-family:"Arial", Arial;
font-weight:normal;
color:#464646;
font-size: 18px;
margin-bottom: 3px;
line-height: 20px;
background:#7BBEDE;
}
#meta h2{
font-family:"Arial", Arial;
font-weight:bold;
color:#464646;
font-size: 16px;
margin-bottom: 3px;
line-height: 20px;
padding:5px;
background:#7BBEDE;
}
Alles anzeigen
Ich frage deshalb weil es doch nicht schön aussieht, wenn alle oberpunkte eine h2 formatierung haben nur dieser nicht
siehe
Wie sich schwer erkennen lässt geht es um die "Pages" sektion. :???:
Deshalb bitte ich euch um eure hilfe.
thanx and greetinx
coocoon