Hallo,
ich will die schwarz umrandeten Buttons ändern:
http://www4.picfront.org/picture/hNC4tq…Unbenannt-1.jpg
Und zwar z.B. gegen diese Grafik:
http://www4.picfront.org/picture/zhaCDY…Unbenannt-2.jpg
Wie kann ich das machen? Weil eine feste Grafik kann es ja wegen verschiedenen Bildschirmauflösungen nicht sein?
Hier mal der Sidebar.php Code des Templates:
PHP
<!-- beginn sidebar -->
<div id="seitenleiste">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<h2><?php _e('Pages'); ?></h2>
<ul>
<li><a href="<?php bloginfo('url'); ?>">Startseite</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li'); ?>
</ul>
<h2><?php _e('Categories'); ?></h2>
<ul>
<?php if (function_exists('wp_list_cats')) {
wp_list_cats('sort_column=name&optioncount=1');
}
else {
wp_list_categories('sort_column=name&show_count=1&title_li');
} ?>
</ul>
<h2><?php _e('Search'); ?></h2>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="s" id="s" size="20" class="suchfeld" /><br />
<input type="submit" value="Suchen" class="sendebutton" />
</form>
<h2>RSS-Feeds</h2>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('Posts'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments'); ?></a></li>
<?php wp_meta(); ?>
</ul>
<h2>Blogroll</h2>
<ul>
<?php wp_list_bookmarks('categorize=0&title_li=0'); ?>
</ul>
<?php endif; ?>
<h2><?php _e('Meta'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php if (function_exists('wp_theme_switcher')) { ?>
<h2>Styleswitcher</h2>
<?php wp_theme_switcher(); ?>
<?php } ?>
</div><!-- /seitenleiste -->
<!-- ende sidebar -->
Alles anzeigen
Und hier der Link zum Blog:
Blog.dlboard.net
Vielen dank für die Hilfe.Bitte versteht, dass ich ein Anfänger bin :-D
Max