diff --git a/files/routes/comments.py b/files/routes/comments.py
index fa2ce0906..6fc8e22d2 100644
--- a/files/routes/comments.py
+++ b/files/routes/comments.py
@@ -1065,10 +1065,10 @@ def handle_wordle_action(cid, v):
for i in guess:
result += i.upper()
if i == answer[pos]:
- result += "🟩/"
+ result += "🟩 "
not_finished[pos] = " "
- elif i in not_finished: result += "🟨/"
- else: result += "🟥/"
+ elif i in not_finished: result += "🟨 "
+ else: result += "🟥 "
pos += 1
guesses += result[:-1]
diff --git a/files/templates/comments.html b/files/templates/comments.html
index ebd34e96c..3d0d8da1b 100644
--- a/files/templates/comments.html
+++ b/files/templates/comments.html
@@ -288,7 +288,7 @@
{% endif %}
{% if c.wordle_result %}
- {{wordle_guesses}}
+ {{wordle_guesses}}
{% if wordle_status == 'active' and v.id == c.author_id %}
diff --git a/files/templates/default.html b/files/templates/default.html
index 3ec7e65e1..3175b3e2a 100644
--- a/files/templates/default.html
+++ b/files/templates/default.html
@@ -221,7 +221,7 @@
{% if v %}
{% if sub %}
-
+
{% elif SITE_NAME == 'Drama' %}
{% set path = "assets/images/" + SITE_NAME + "/banners_bhm" %}
{% set image = "/static/" + path + "/" + listdir('files/' + path)|random() + '?a=21' %}