Hallo allerseits,
ja, ich habe gesucht und entsprechendes ausprobiert aber trotzdem die Lösung noch nicht gefunden.
Ich möchte in einer leicht modifizierten classic-theme sidebar ein paar Grafiken einbauen und es gelingt mir nicht wirklich.
PHP
<!-- begin sidebar -->
<div id="menu">
<ul>
<?php wp_list_pages(); ?>
<?php if (function_exists('get_recent_comments')) { ?>
<li><h2><?php _e('Recent Comments:'); ?></h2>
<ul><?php get_recent_comments(); ?></ul>
</li>
<?php } ?>
<?php get_links_list(); ?>
<li id="categories"><?php _e('Categories:'); ?>
<ul>
<?php wp_list_cats(); ?>
</ul>
</li>
<li id="search">
<label for="s"><?php _e('Search:'); ?></label>
<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"><?php _e('Archives:'); ?>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li id="meta"><?php _e('Meta:'); ?>
<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>
<li>
<?php
if(function_exists(sem_showNumUsersOnline)) {
global $user_level; get_currentuserinfo();
if ($user_level > 8) { ?>
<a href="<?php bloginfo('url'); ?>/wp-admin/admin.php?page=semmelstatz2/semmelstatz2.php">
<?php print sem_showNumUsersOnline() ; ?> User online</a><?php }
else {
print sem_showNumUsersOnline()." User online";
}
}
?>
</li>
</li>
[COLOR=Red]WIE KANN ICH AN DIESER STELLE DIE FORMATIERUNG ÄNDERN?
Muss ich das im globalen stylesheet etwas ändern oder kann
ich einfach an dieser Stelle sagen: "Bitte keine Liste, kein
Rahmen um die Grafik (die überhaupt nicht angezeigt wird, BTW)"
Wenn ja, wie?
-----------------------
<a href="http://derlink" title="titel" target="_blank"><img src="http-linkaufdatei" width="80" height="15" border="0" alt="irgendeinname" /></a>
-----------------------
[/COLOR]
</div>
<!-- end sidebar -->
Alles anzeigen
Dank und Gruß
Frank