diff --git a/data/cubes.blog.css b/data/cubes.blog.css
index 750e3df3cda8c07d90148e8547c02095b454cf03_ZGF0YS9jdWJlcy5ibG9nLmNzcw==..be454372d12a763a7271808cfe175a6f34b31866_ZGF0YS9jdWJlcy5ibG9nLmNzcw== 100644
--- a/data/cubes.blog.css
+++ b/data/cubes.blog.css
@@ -4,6 +4,6 @@
 }
 
 div.post h1 {
-  font-size: 1.3em;
+  font-size: 1.7em;
   position: relative;
   border-bottom: none;
@@ -8,4 +8,5 @@
   position: relative;
   border-bottom: none;
+  font-weight: normal;
 }
 
@@ -10,4 +11,7 @@
 }
 
+div.entry h3, h3.title {
+  font-size: 1.0em;
+}
 div.post div.postmetadata {
   background:transparent url(postdatabg.jpg) no-repeat scroll left bottom;
@@ -12,6 +16,6 @@
 div.post div.postmetadata {
   background:transparent url(postdatabg.jpg) no-repeat scroll left bottom;
-  font-size: 0.92em;
+  font-size: 0.98em;
   padding-bottom: 12px;
   padding-left: 10px;
   padding-top: 10px;
@@ -52,3 +56,14 @@
  float:right;
 }
 
+span.author {
+ float:right;
+ font-size: 1.2em;
+}
+
+div.creation_date {
+ font-size:1.2em;
+ border-bottom-style: ridge;
+ border-bottom-color: #CCC;
+ border-bottom-width: thin;
+}
diff --git a/views/secondary.py b/views/secondary.py
index 750e3df3cda8c07d90148e8547c02095b454cf03_dmlld3Mvc2Vjb25kYXJ5LnB5..be454372d12a763a7271808cfe175a6f34b31866_dmlld3Mvc2Vjb25kYXJ5LnB5 100644
--- a/views/secondary.py
+++ b/views/secondary.py
@@ -203,10 +203,11 @@
         _ = self._cw._
         w(u'<div class="post">')
         w(u'<h1>%s</h1>' % entity.view('incontext'))
-        w(u'%s ' % entity.postinfo_description())
+        w(u'<div class="creation_date">%s</div>' %
+          self._cw.format_date(entity.creation_date))
         creator = entity.creator
         if creator:
             vtitle = _('blog entries created by %s') % creator.name()
             rql = 'Any X ORDERBY D DESC WHERE X is BlogEntry, X created_by Y, '\
                   'Y eid %s, X creation_date D' % creator.eid
             url = self._cw.build_url('view', rql=rql, vtitle=vtitle, page_size=10)
@@ -207,12 +208,12 @@
         creator = entity.creator
         if creator:
             vtitle = _('blog entries created by %s') % creator.name()
             rql = 'Any X ORDERBY D DESC WHERE X is BlogEntry, X created_by Y, '\
                   'Y eid %s, X creation_date D' % creator.eid
             url = self._cw.build_url('view', rql=rql, vtitle=vtitle, page_size=10)
-            w(u'%s <a title="%s" href="%s">%s</a>' % (
+            w(u'<span class="author">%s <a title="%s" href="%s">%s</a></span>' % (
                 _('by'), xml_escape(vtitle), xml_escape(url), creator.name()))
         w(u'<div class="entry">')
         body = entity.printable_value('content')
         w(body)
         w(u'</div>')
@@ -214,8 +215,9 @@
                 _('by'), xml_escape(vtitle), xml_escape(url), creator.name()))
         w(u'<div class="entry">')
         body = entity.printable_value('content')
         w(body)
         w(u'</div>')
+        w(u'<br class="clear"/>')
         w(u'<div class="postmetadata">%s</div>' % entity.view('post-reldata'))
         w(u'</div>')