I want a logo (we'll call it .item-logo) to be shown inside a circle when not being hovered over, but when you hover over the container, the date should be displayed.
Here is the HTML code:
<div id="main-content" class="container animated">
<div id="content">
<article class="post-65 post type-post status-publish format-standard hentry category-thoughts tag-example tag-standard tag-tag item-list">
<div class="post-format-icon">
<a href="<?php echo get_permalink(); ?>" class="item-date"><span><?php the_time('j') ?></span><small><?php the_time('M') ?></small></a>
</div>
</article>
</div>
</div>
You can view the JS Fiddle here. The date may not be visible due to PHP. In this case, the logo should change to show the date when hovered over.
Thank you!