diff --git a/config/install/zurb_foundation.settings.yml b/config/install/zurb_foundation.settings.yml
index 55b52db..358871a 100644
--- a/config/install/zurb_foundation.settings.yml
+++ b/config/install/zurb_foundation.settings.yml
@@ -10,7 +10,7 @@ settings:
   zurb_foundation_disable_base_css: false
   zurb_foundation_disable_base_js: false
   zurb_foundation_meta_header_grid: true
-  zurb_foundation_top_bar_enable: 0
+  zurb_foundation_top_bar_enable: false
   zurb_foundation_top_bar_grid: false
   zurb_foundation_top_bar_sticky: false
   zurb_foundation_top_bar_menu_text: 'Menu'
@@ -22,4 +22,5 @@ settings:
   zurb_foundation_page_site_name: true
   zurb_foundation_page_site_logo: true
   zurb_foundation_page_account_info: true
+  block_copyright_check: true
 langcode: en
\ No newline at end of file
diff --git a/templates/page.html.twig b/templates/page.html.twig
index bdb6e73..07263c4 100644
--- a/templates/page.html.twig
+++ b/templates/page.html.twig
@@ -196,13 +196,19 @@
           {% endif %}
         </footer>
       {% endif %}
-      <div class="bottom-bar panel">
-        <div class="row">
-          <div class="large-12 columns">
-          &copy; {{ "now"|date('Y') }} {{ site_name }} {{ 'All rights reserved.'|t }}
+      {% if block_copyright %}
+        <div class="bottom-bar panel">
+          <div class="row">
+            <div class="large-12 columns">
+              {% if block_copyright_check %}
+                &copy; {{ "now"|date('Y') }} {{ site_name }} {{ 'All rights reserved.'|t }}
+              {% else %}
+                {{ block_copyright }}
+              {% endif %}
+            </div>
           </div>
         </div>
-      </div>
+      {% endif %}
 
     <a class="exit-off-canvas"></a>
 
diff --git a/theme-settings.php b/theme-settings.php
index cfae425..c4b6a67 100644
--- a/theme-settings.php
+++ b/theme-settings.php
@@ -174,6 +174,34 @@ function zurb_foundation_form_system_theme_settings_alter(&$form, FormStateInter
     '#description' => t('Determines if the hard-coded login block should be displayed.'),
     '#default_value' => theme_get_setting('zurb_foundation_page_account_info'),
   );
+  /*
+   * Copyright Block
+   */
+
+  $form['page_elements']['block_copyright_check'] = [
+    '#type' => 'checkbox',
+    '#title' => t('Use the default Copyright label'),
+    '#default_value' => theme_get_setting('block_copyright_check'),
+    '#tree' => FALSE,
+    '#description' => t('Uncheck here if you want modify the copyright label')
+  ];
+
+  $form['page_elements']['settings'] = [
+    '#type' => 'container',
+    '#states' => [
+      // Hide the copyright container when using the default label.
+      'invisible' => [
+        'input[name="block_copyright_check"]' => ['checked' => TRUE],
+      ],
+    ],
+  ];
+
+  $form['page_elements']['settings']['block_copyright'] = [
+    '#type' => 'textfield',
+    '#title' => t('Copyright text'),
+    '#description' => t('Specify text to copyright.'),
+    '#default_value' => theme_get_setting('block_copyright'),
+  ];
 
   /*
    * Styles and Scripts
diff --git a/zurb_foundation.theme b/zurb_foundation.theme
index e9ed30e..d3205c4 100644
--- a/zurb_foundation.theme
+++ b/zurb_foundation.theme
@@ -336,6 +336,13 @@ function zurb_foundation_preprocess_page(&$variables) {
 
   // Variable to disable hard-coded login elements.
   $variables['show_account_info'] = theme_get_setting('zurb_foundation_page_account_info');
+
+  // Copyright block settings
+  $block_copyright_value = theme_get_setting('block_copyright');
+  $variables['block_copyright'] = $block_copyright_value;
+
+  $block_copyright_check = theme_get_setting('block_copyright_check');
+  $variables['block_copyright_check'] = $block_copyright_check;
 }
 
 /**
