diff --git a/html5/verto/verto_communicator/src/css/verto.css b/html5/verto/verto_communicator/src/css/verto.css
index 9bc3a8b70c..d307eecdaf 100644
--- a/html5/verto/verto_communicator/src/css/verto.css
+++ b/html5/verto/verto_communicator/src/css/verto.css
@@ -925,6 +925,10 @@ body .modal-body .btn-group .btn.active {
color: #FFF;
}
+.chat-img {
+ display: block;
+}
+
.chat-members .chat-member-item {
padding: 8px 16px;
height: 56px;
diff --git a/html5/verto/verto_communicator/src/vertoFilters/filters/picturify.js b/html5/verto/verto_communicator/src/vertoFilters/filters/picturify.js
index 2a09551030..f4f7dfe3f1 100644
--- a/html5/verto/verto_communicator/src/vertoFilters/filters/picturify.js
+++ b/html5/verto/verto_communicator/src/vertoFilters/filters/picturify.js
@@ -11,11 +11,11 @@
var i = 0;
width = width || 150; //default width
if(regex64.test(text)) {
- text = text.replace(regex64, '
')
+ text = text.replace(regex64, '
')
}
do {
- text = text.replace(regex, '
');
+ text = text.replace(regex, '
');
} while((!n || (n && i++ < n)) && regex.test(text));
return text;