diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 88f687e..4afa739 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -90,8 +90,12 @@ disableHugoGeneratorInject = false
[params.logo]
logoText = "$ cd /home/"
logoHomeLink = "/"
+ # Set true to remove the logo entirely.
+ # logoDisables = true
# Set to a valid CSS color to change the cursor in the logo.
# logoColor = "#67a2c9"
+ # Set to a valid CSS time value to change the animation duration, "0s" to disable.
+ # logoAnimate = "2s"
# Social icons
[[params.social]]
diff --git a/layouts/partials/logo.html b/layouts/partials/logo.html
index 685a84e..f7ddf6e 100644
--- a/layouts/partials/logo.html
+++ b/layouts/partials/logo.html
@@ -5,7 +5,11 @@
{{ else }}
>
{{ with .Site.Params.Logo.logoText }}{{ . }}{{ else }}hello{{ end }}
-
+
+
{{ end }}