diff --git a/title.admin.inc b/title.admin.inc
diff --git a/title.module b/title.module
index f48fa5e..9250e15 100644
--- a/title.module
+++ b/title.module
@@ -559,7 +559,7 @@ function title_menu() {
     'description' => 'Settings for the Title module.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('title_admin_settings_form'),
-    'access arguments' => array('administer content types'),
+    'access arguments' => array('administer site configuration'),
     'file' => 'title.admin.inc',
   );
 
@@ -567,6 +567,16 @@ function title_menu() {
 }
 
 /**
+ * Implements hook help.
+ */
+function title_help($path, $arg) {
+  switch ($path) {
+    case 'admin/config/content/title':
+      return '<p>' . t('The settings below allow to configure the <em>default</em> settings to be used when creating new replacing fields. It is even possibile to configure them so that the selected fields are created automatically when a new bundle is created.') . '</p>';
+  }
+}
+
+/**
  * Implements hook_field_extra_fields_alter().
  */
 function title_field_extra_fields_alter(&$info) {
