diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py
index 926aaecf..4e6bab16 100644
--- a/bookwyrm/forms.py
+++ b/bookwyrm/forms.py
@@ -466,9 +466,7 @@ class ThemeForm(CustomForm):
fields = ["name", "path"]
widgets = {
"name": forms.TextInput(attrs={"aria-describedby": "desc_name"}),
- "path": ClearableFileInputWithWarning(
- attrs={"aria-describedby": "desc_path"}
- ),
+ "path": forms.TextInput(attrs={"aria-describedby": "desc_path", "placeholder": _("example-theme.scss")}),
}
diff --git a/bookwyrm/templates/settings/themes.html b/bookwyrm/templates/settings/themes.html
index 6e9eb61c..3eac261d 100644
--- a/bookwyrm/templates/settings/themes.html
+++ b/bookwyrm/templates/settings/themes.html
@@ -16,21 +16,24 @@
{% endif %}
- {% trans "Default theme:" %} {{ site.default_theme.name }}
-
-
- {% trans "Set default theme" %}
-
- {% trans "How to add a theme" %}
+
+
bookwyrm/static/css/
directory on your server from the command line." %}
+ ./bw-dev compilescss
." %}
+ {% trans "Upload theme" %}
+ {% trans "Add theme" %}
{% if theme_form.errors %}
{{ theme.theme_path }}
{{ theme.path }}