diff options
-rw-r--r-- | app/views/user/show.rhtml | 7 | ||||
-rw-r--r-- | public/stylesheets/main.css | 15 |
2 files changed, 20 insertions, 2 deletions
diff --git a/app/views/user/show.rhtml b/app/views/user/show.rhtml index d9898972e..f1e791f2a 100644 --- a/app/views/user/show.rhtml +++ b/app/views/user/show.rhtml @@ -66,6 +66,11 @@ <% end %> </p> + <!--<div class="user_about_me"> + <p><img class="comment_quote" src="/images/quote.png" alt="">I like to make requests about dogs. I'm obsessed with + them! Check out my doggy house at http://www.doggyplace.com</p> + </div>--> + <% if @is_you %> <p id="user_change_password_email"> <% if @display_user.profile_photo %> @@ -77,7 +82,7 @@ <% end %> <% if not @is_you %> - <p> + <p id="user_not_logged_in"> If you are <%=h @display_user.name %>, <%= link_to "sign in", signin_url(:r => request.request_uri) %> to change your password or alter your subscriptions. </p> <% end %> diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index aa9ce7c44..741e895f5 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1125,8 +1125,21 @@ div.act_link img { padding: 2px; } -#user_change_password_email { +#user_change_password_email, #user_not_logged_in { clear: left; } +div.user_about_me +{ + width: 37em; + float: left; + padding: 0em 0.5em 0em 0.5em; + margin: 0 0 1em 0; + /*border-color: #5F5F5F; + border-width: 1px; + border-style: dotted; + */ + overflow: auto; +} + |