I’m sorry I misread your first post.
You have to be more specific when you say “Not working. :(” and come for help. People can only guess so much and people may not have the time to serve everything to you ready-to-eat.
I said put it anywhere between while (have_posts()) : the_post();
and endwhile;
, like this:
<?php while (have_posts()) : the_post(); ?>
<div class="date" title="<? the_time('F jS, Y') ?>">
<span class="month"><?php the_time('M'); ?></span>
<span class="day"><? the_time('j'); ?></span>
</div>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<h4><?php the_time('F jS, Y'); ?><!-- by <?php the_author() ?> --> · <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> · <?php the_category(', '); ?> <?php edit_post_link('Edit', ' · ', ''); ?></h4>
<div class="entry">
<?php the_content('[Read more →]'); ?>
</div>
<p class="tagged"><span class="add_comment"><?php comments_popup_link('→ No Comments', '→ 1 Comment', '→ % Comments'); ?></span><strong>Tags:</strong><?php the_tags('','·',''); ?>
<div class="clear"></div>
<?php endwhile; ?>
and I said paste it into your style.css, like this:
li.widget .search_input { font-size: 1.1em !important; }
#search_form .search_input:focus { border-top: 1px solid #666; border-left: 1px solid #666; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.date {
background: url(images/date.gif) no-repeat;
height: 54px;
margin-bottom: 0px;
width: 54px;
text-align: center;
float: left;
margin-top: 15px;
}
.date .month {
display: block;
color: #F6F5BC;
padding: 2px 0px;
text-align: center;
text-transform: uppercase;
font-size: 10px;
margin-top: 2px;
font-weight: bold;
margin-bottom: 3px;
}
.date .day {
display: block;
color: #FFFFFF;
font: 2.3em Georgia;
padding-top: 0px;
text-align: center;
margin-top: -8px;
}
You will have to experiment with these until it works fine.