wp-content/themes/yourstyle/sidebar.php
<?php wp_tag_cloud('smallest=8&largest=14&number=12&'); ?>
I don’t use widgets but add code to sidebar.php for versatility so it may not help but full code to add tags is:
<li>
<h2>Tags</h2>
<ul>
<?php wp_tag_cloud('smallest=8&largest=14&number=12&'); ?>
</ul>
</li>
small text size 8
largest 14
number of tags 12
jrav001 nearly had it but use span with display:block; not div otherwise code will not validate ;)…
PHP:
<?php the_content('<span class="more">Read More » </span>'); ?>
CSS:
.more {
display:block;
margin-top:10px;
text-align:right;
}