diff --git a/app/views/words/_journal_reply_items.html.erb b/app/views/words/_journal_reply_items.html.erb
index 9408722d9..738ce2132 100644
--- a/app/views/words/_journal_reply_items.html.erb
+++ b/app/views/words/_journal_reply_items.html.erb
@@ -3,10 +3,12 @@
+
<% id = 'project_respond_form_'+ reply.id.to_s %>
-
<%= link_to reply.user.name, user_path(reply.user) %>:
-
<%= reply.notes %>
+
+ <%= link_to reply.user.name, user_path(reply.user) %>:
+ <%= reply.notes %>
+
<%# ids = 'project_respond_form_'+ journal.id.to_s%>
diff --git a/app/views/words/_message.html.erb b/app/views/words/_message.html.erb
index e9e14034d..781b8eea9 100644
--- a/app/views/words/_message.html.erb
+++ b/app/views/words/_message.html.erb
@@ -31,7 +31,8 @@
<%= render :partial => 'words/new_respond', :locals => {:journal => journal, :m_reply_id => journal.id} %>
-
+
+
<%= render :partial => "words/journal_reply", :locals => {:journal => journal } %>
diff --git a/app/views/words/_new_respond.html.erb b/app/views/words/_new_respond.html.erb
index 25d4b7fcf..adc897e40 100644
--- a/app/views/words/_new_respond.html.erb
+++ b/app/views/words/_new_respond.html.erb
@@ -1,9 +1,45 @@
+
<%= form_tag({:controller => 'words', :action => 'create_reply'}, :remote => true) do %>
-<%= text_area_tag 'user_notes', "", :class => 'noline', :style => "resize: none;", :rows => 4, :placeholder => l(:label_projects_feedback_respond_content) %>
+<%= text_area_tag 'user_notes', "", :class => 'noline',
+ :style => "resize: none;", :rows => 4,
+ :placeholder => l(:label_projects_feedback_respond_content),
+ :maxlength => 250 %>
<%= hidden_field_tag 'reference_id', params[:reference_id], :value => journal.id %>
<%= hidden_field_tag 'reference_user_id', params[:reference_user_id], :value => journal.user.id %>
<%= hidden_field_tag 'reference_message_id', params[:reference_message_id], :value => m_reply_id %>
-<%= submit_tag l(:button_projects_feedback_respond), :name => nil , :class => "enterprise", :style => "margin-top: 1px;"%>
+<%= submit_tag l(:button_projects_feedback_respond), :name => nil , :class => "enterprise", :style => "float: right; margin-top: 1px; margin-right: 4px;"%>
<% end %>
\ No newline at end of file
diff --git a/public/themes/redpenny-master/stylesheets/application.css b/public/themes/redpenny-master/stylesheets/application.css
index 0dcca361b..f57d10552 100644
--- a/public/themes/redpenny-master/stylesheets/application.css
+++ b/public/themes/redpenny-master/stylesheets/application.css
@@ -2125,7 +2125,7 @@ ul.messages-for-user-reply li {
display: none;
width: 87%;
margin: auto;
- clear:both;
+ clear: both;
}
.outer-message-for-use p {
@@ -2134,10 +2134,20 @@ ul.messages-for-user-reply li {
margin-top: 5px;
}
-.body p {
+.message-body p {
margin: 0;
padding: 0;
margin-top: 4px;
margin-left: 4px;
font-size: 9pt;
+}
+
+.message-body {
+ margin: 0;
+ padding: 0;
+ margin-left: 40px;
+}
+
+.counter {
+ float: left;
}
\ No newline at end of file