diff --git a/app/views/dashboards/index.html.haml b/app/views/dashboards/index.html.haml
index 7521683bc..eab45ae35 100644
--- a/app/views/dashboards/index.html.haml
+++ b/app/views/dashboards/index.html.haml
@@ -1,7 +1,8 @@
- if user_signed_in?
%h1#user_name
= link_to current_user.real_name, root_path
- %h1= title_for_page
+ %span= title_for_page
+ %h3= my_latest_message
= render "shared/publisher"
%ul#stream
= puts @posts.inspect
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 67daa26b2..6e31c853b 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -160,6 +160,11 @@ form {
line-height: 100px; }
#user_name a {
color: black; }
+ #user_name span {
+ line-height: 140px;
+ font-size: 30%;
+ color: #dddddd;
+ float: right; }
#stream div.comments {
display: none; }
diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass
index cbd3b4017..8809af2a8 100644
--- a/public/stylesheets/sass/application.sass
+++ b/public/stylesheets/sass/application.sass
@@ -188,6 +188,13 @@ form
:line-height 100px
a
:color #000
+ span
+ :line-height 140px
+ :font
+ :size 30%
+ :color #dddddd
+ :float right
+
#stream div.comments
:display none