Oh. I unexpired trouble when I was new at PHP.
This isn't a very complicated solution:
In the code, for example, the lsidebar.php,
`<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the /"><?php echo bloginfo('name'); ?> weblog archives
for <?php the_time('F, Y'); ?>.</p>`
The <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> is causing this. If that page is a monthly archive, "You are currently browsing the (Blog Name) weblog archives for (date)." will show.
You don't want that to show?
Delete the <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> to make it show on EVERY page, or go even further and delete the whole part of code:
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives
for <?php the_time('F, Y'); ?>.</p>
I hope I helped. Feel free to respond if you have any troubles.