diff --git a/src/Plugin/Block/SimpleSocialIconsBlock.php b/src/Plugin/Block/SimpleSocialIconsBlock.php
index 1fd5d02..70693e2 100644
--- a/src/Plugin/Block/SimpleSocialIconsBlock.php
+++ b/src/Plugin/Block/SimpleSocialIconsBlock.php
@@ -299,6 +299,62 @@ class SimpleSocialIconsBlock extends BlockBase {
       '#weight' => '2',
     );
 
+    $form['simple_social_icons_titletext'] = array(
+      '#type' => 'details',
+      '#title' => t('Set title on mouse hovering of links'),
+      '#collapsible' => TRUE,
+      '#collapsed' => TRUE,
+      '#description' => '',
+    );
+    $form['simple_social_icons_titletext']['twitter_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Twitter title text'),
+      '#default_value' => isset($this->configuration['twitter_titletext']) ? $this->configuration['twitter_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+    $form['simple_social_icons_titletext']['linkedin_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Linkedin title text'),
+      '#default_value' => isset($this->configuration['linkedin_titletext']) ? $this->configuration['linkedin_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+    $form['simple_social_icons_titletext']['email_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Email title text'),
+      '#default_value' => isset($this->configuration['email_titletext']) ? $this->configuration['email_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+    $form['simple_social_icons_titletext']['facebook_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Facebook title text'),
+      '#default_value' => isset($this->configuration['facebook_titletext']) ? $this->configuration['facebook_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+    $form['simple_social_icons_titletext']['googleplus_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Google plus title text'),
+      '#default_value' => isset($this->configuration['googleplus_titletext']) ? $this->configuration['googleplus_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+    $form['simple_social_icons_titletext']['pinterest_titletext'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Pinterest title text'),
+      '#default_value' => isset($this->configuration['pinterest_titletext']) ? $this->configuration['pinterest_titletext'] : '',
+      '#size' => 60,
+      '#maxlength' => 128,
+      '#weight' => '1',
+    );
+
     return $form;
   }
 
@@ -346,6 +402,13 @@ class SimpleSocialIconsBlock extends BlockBase {
     $this->configuration['facebook_enable'] = $form_state->getValue('simple_social_icons_facebook')['facebook_enable'];
 
     $this->configuration['googleplus_enable'] = $form_state->getValue('simple_social_icons_googleplus')['googleplus_enable'];
+
+    $this->configuration['twitter_titletext'] = $form_state->getValue('simple_social_icons_titletext')['twitter_titletext'];
+    $this->configuration['linkedin_titletext'] = $form_state->getValue('simple_social_icons_titletext')['linkedin_titletext'];
+    $this->configuration['email_titletext'] = $form_state->getValue('simple_social_icons_titletext')['email_titletext'];
+    $this->configuration['facebook_titletext'] = $form_state->getValue('simple_social_icons_titletext')['facebook_titletext'];
+    $this->configuration['googleplus_titletext'] = $form_state->getValue('simple_social_icons_titletext')['googleplus_titletext'];
+    $this->configuration['pinterest_titletext'] = $form_state->getValue('simple_social_icons_titletext')['pinterest_titletext'];
   }
 
   /**
@@ -382,6 +445,8 @@ class SimpleSocialIconsBlock extends BlockBase {
 
     $googleplus_enable = isset($this->configuration['googleplus_enable']) ? $this->configuration['googleplus_enable'] : '';
 
+    $twitter_titletext = isset($this->configuration['twitter_titletext']) ? $this->configuration['twitter_titletext'] : '';
+
     if($default_style){
       $icon_color = '#ffffff';
       $button_link_color = 'none';
@@ -404,6 +469,12 @@ class SimpleSocialIconsBlock extends BlockBase {
       'email_enable' => $email_enable,
       'facebook_enable' => $facebook_enable,
       'googleplus_enable' => $googleplus_enable,
+      'twitter_titletext' => $twitter_titletext,
+      'linkedin_titletext' => isset($this->configuration['linkedin_titletext']) ? $this->configuration['linkedin_titletext'] : '',
+      'email_titletext' => isset($this->configuration['email_titletext']) ? $this->configuration['email_titletext'] : '',
+      'facebook_titletext' => isset($this->configuration['facebook_titletext']) ? $this->configuration['facebook_titletext'] : '',
+      'googleplus_titletext' => isset($this->configuration['googleplus_titletext']) ? $this->configuration['googleplus_titletext'] : '',
+      'pinterest_titletext' => isset($this->configuration['pinterest_titletext']) ? $this->configuration['pinterest_titletext'] : '',
     ];
     $output[] = ['#markup' => $this->icons($values)];
 
@@ -509,55 +580,55 @@ class SimpleSocialIconsBlock extends BlockBase {
     }
 
     if (!empty($values['twitter_via'])) {
-      $twitter_icon = '<li><a class="soc-twitter soc_ver-twitter" href="https://twitter.com/intent/tweet?source=' . $url . '&text=' . $title . ':' . $url . '&via=@'. $values['twitter_via'] . '" target="_blank" title="Tweet"></a></li>';
+      $twitter_icon = '<li><a class="soc-twitter soc_ver-twitter" href="https://twitter.com/intent/tweet?source=' . $url . '&text=' . $title . ':' . $url . '&via=@'. $values['twitter_via'] . '" target="_blank" title=" '. $values['twitter_titletext'] .' "></a></li>';
     }
     else {
-      $twitter_icon = '<li><a class="soc-twitter soc_ver-twitter" href="https://twitter.com/intent/tweet?source=' . $url . '&text=' . $title . ':' . $url . '&via=" target="_blank" title="Tweet"></a></li>';
+      $twitter_icon = '<li><a class="soc-twitter soc_ver-twitter" href="https://twitter.com/intent/tweet?source=' . $url . '&text=' . $title . ':' . $url . '&via=" target="_blank" title=" '. $values['twitter_titletext'] .' "></a></li>';
     }
 
-    $facebook_icon = '<li><a class="soc-facebook soc_ver-facebook" href="https://www.facebook.com/sharer/sharer.php?u=' . $url . '&t=' . $title . '" target="_blank" title="Share on Facebook"></a></li>';
+    $facebook_icon = '<li><a class="soc-facebook soc_ver-facebook" href="https://www.facebook.com/sharer/sharer.php?u=' . $url . '&t=' . $title . '" target="_blank" title=" '. $values['facebook_titletext'] .' "></a></li>';
 
     if (!empty($values['pinterest_image_url']) && !empty($values['pinterest_desc'])) {
-      $pinterest_icon = '<li><a class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=' . $values['pinterest_image_url'] . '&description=' . $values['pinterest_desc'] . '"></a></li>';
+      $pinterest_icon = '<li><a title=" '. $values['pinterest_titletext'] .' " class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=' . $values['pinterest_image_url'] . '&description=' . $values['pinterest_desc'] . '"></a></li>';
     }
     else if (!empty($values['pinterest_image_url'])) {
-      $pinterest_icon = '<li><a class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=' . $values['pinterest_image_url'] . '&description="></a></li>';
+      $pinterest_icon = '<li><a title=" '. $values['pinterest_titletext'] .' " class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=' . $values['pinterest_image_url'] . '&description="></a></li>';
     }
     else if (!empty($values['pinterest_desc'])) {
-      $pinterest_icon = '<li><a class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=&description=' . $values['pinterest_desc'] . '"></a></li>';
+      $pinterest_icon = '<li><a title=" '. $values['pinterest_titletext'] .' " class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=&description=' . $values['pinterest_desc'] . '"></a></li>';
     }
     else {
-      $pinterest_icon = '<li><a class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=&description="></a></li>';
+      $pinterest_icon = '<li><a title=" '. $values['pinterest_titletext'] .' " class="soc-pinterest soc_ver-pinterest" href="https://pinterest.com/pin/create/button/?url=' . $url . '&media=&description="></a></li>';
     }
 
-    $google_icon = '<li><a class="soc-google soc_ver-google" href="https://plus.google.com/share?url=' . $url . '" target="_blank" title="Share on Google+"></a></li>';
+    $google_icon = '<li><a class="soc-google soc_ver-google" href="https://plus.google.com/share?url=' . $url . '" target="_blank" title="'. $values['googleplus_titletext'] .'"></a></li>';
 
     if (!empty($values['linkedin_summary']) && !empty($values['linkedin_source'])) {
-      $linked_in_icon = '<li><a class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source='. $values['linkedin_source'] .'&summary=' . $values['linkedin_summary'] . '" target="_blank"></a></li>';
+      $linked_in_icon = '<li><a title=" '. $values['linkedin_titletext'] .'" class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source='. $values['linkedin_source'] .'&summary=' . $values['linkedin_summary'] . '" target="_blank"></a></li>';
     }
     else if (!empty($values['linkedin_source'])) {
-      $linked_in_icon = '<li><a class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source='. $values['linkedin_source'] .'&summary=" target="_blank"></a></li>';
+      $linked_in_icon = '<li><a title=" '. $values['linkedin_titletext'] .'" class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source='. $values['linkedin_source'] .'&summary=" target="_blank"></a></li>';
     }
     else if (!empty($values['linkedin_summary'])) {
-      $linked_in_icon = '<li><a class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source=&summary=' . $values['linkedin_summary'] . '" target="_blank"></a></li>';
+      $linked_in_icon = '<li><a title=" '. $values['linkedin_titletext'] .'" class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source=&summary=' . $values['linkedin_summary'] . '" target="_blank"></a></li>';
     }
     else {
-      $linked_in_icon = '<li><a class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source=&summary=" target="_blank"></a></li>';
+      $linked_in_icon = '<li><a title=" '. $values['linkedin_titletext'] .'" class="soc-linkedin soc_ver-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=' . $url . '&title=' . $title . '&source=&summary=" target="_blank"></a></li>';
     }
 
     // $blog_icon = '<li><a class="soc-rss soc-icon-last" href="#"></a></li>';
 
     if (!empty($values['email_body']) && !empty($values['email_subject'])) {
-      $email = '<li><a class="soc-email1 soc_ver-email1" href="mailto:?&subject=' . $values['email_subject'] . '&body=' . $values['email_body'] . ' ' . $url . '"></a></li>';
+      $email = '<li><a title=" '. $values['email_titletext'] .'" class="soc-email1 soc_ver-email1" href="mailto:?&subject=' . $values['email_subject'] . '&body=' . $values['email_body'] . ' ' . $url . '"></a></li>';
     }
     else if(!empty($values['email_body'])) {
-      $email = '<li><a class="soc-email1 soc_ver-email1" href="mailto:?&subject=&body=' . $values['email_body'] . ' ' . $url . '"></a></li>';
+      $email = '<li><a title=" '. $values['email_titletext'] .'" class="soc-email1 soc_ver-email1" href="mailto:?&subject=&body=' . $values['email_body'] . ' ' . $url . '"></a></li>';
     }
     else if(!empty($values['email_subject'])) {
-      $email = '<li><a class="soc-email1 soc_ver-email1" href="mailto:?&subject=' . $values['email_subject'] . '&body=' . $url . '"></a></li>';
+      $email = '<li><a title=" '. $values['email_titletext'] .'" class="soc-email1 soc_ver-email1" href="mailto:?&subject=' . $values['email_subject'] . '&body=' . $url . '"></a></li>';
     }
     else {
-      $email = '<li><a class="soc-email1 soc_ver-email1" href="mailto:?&subject=&body=' . $url . '"></a></li>';
+      $email = '<li><a title=" '. $values['email_titletext'] .'" class="soc-email1 soc_ver-email1" href="mailto:?&subject=&body=' . $url . '"></a></li>';
     }
     if ($values['icon_placement'] == 0) {
 
