{"id":897,"date":"2021-03-20T12:00:53","date_gmt":"2021-03-20T12:00:53","guid":{"rendered":"https:\/\/learnhowwp.com\/?p=897"},"modified":"2021-05-11T06:53:34","modified_gmt":"2021-05-11T06:53:34","slug":"remove-title-text-image-hover","status":"publish","type":"post","link":"https:\/\/learnhowwp.com\/remove-title-text-image-hover\/","title":{"rendered":"How to Remove Hover Text from Images in Divi Theme"},"content":{"rendered":"\n<p>In this article I will share the steps to remove text you see when you hover on images in Divi theme.<\/p>\n\n\n\n<p>When you hover over an image you will see the title of the image in a tool tip. Here is a screenshot of what the text looks like.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"679\" height=\"387\" src=\"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg\" alt=\"Image title text in tooltip on hover\" class=\"wp-image-1314\"\/><\/figure><\/div>\n\n\n\n<p>This text is the <strong>Title Text <\/strong>of the image. The browser will show the title text when you hover over an image for a few seconds.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remove Text From Image Module<\/h2>\n\n\n\n<p>If you are using an Image module then you can delete the Title text inside the Image module settings. The option for Title text is in <strong>Image Module Settings &gt; Advanced &gt; Attributes<\/strong>. <\/p>\n\n\n\n<p>Please have a look at the screenshot below if you are unsure where to find the option.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"519\" height=\"568\" src=\"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-image-module-title-text.jpg\" alt=\"Image module setting title attribute\" class=\"wp-image-1313\"\/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Remove Hover Text From All Images Using Code<\/h2>\n\n\n\n<p>The option to remove title text is not present in all the modules. However with a small snippet of custom jQuery code we can stop the text from showing on hover.<\/p>\n\n\n\n<p>To remove the text from appearing on hover on all pages you have to add the below code to your website.<\/p>\n\n\n\n<p>Go to your <strong>Dashboard &gt; Divi &gt; Theme Options &gt; Integration &gt; Add code to the &lt;head&gt; of your blog<\/strong> and add the code.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\n&lt;script&gt;\njQuery(document).ready(function($) {\n    $(&quot;img&quot;).mouseenter(function() {\n        let $lwp_title = $(this).attr(&quot;title&quot;);\n        $(this).attr(&quot;lwp_title&quot;, $lwp_title);\n        $(this).attr(&quot;title&quot;, &quot;&quot;);\n    }).mouseleave(function() {\n        let $lwp_title = $(this).attr(&quot;lwp_title&quot;);\n        $(this).attr(&quot;title&quot;, $lwp_title);\n        $(this).removeAttr(&quot;lwp_title&quot;);\n    });\n});\n&lt;\/script&gt;\n<\/pre><\/div>\n\n\n<p>If you are not sure where to add the code then here is a screenshot to help you.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"513\" src=\"https:\/\/learnhowwp.com\/wp-content\/uploads\/2020\/02\/Divi-Theme-Options-IntegrationTab-1024x513.png\" alt=\"Divi theme options code remove text on image hover\" class=\"wp-image-293\"\/><\/figure><\/div>\n\n\n\n<p>The code removes the title when someone hovers on an image. And then adds it back again when the mouse leaves the image. If you are worried about the code impacting your SEO because it is deleting the title then you don&#8217;t have to worry. The title is only removed on user action. The title is only deleted when you hover over the image.<\/p>\n\n\n\n<p>Here are some popular tutorials from the blog that you can read next.<\/p>\n\n\n\n<ul class=\"wp-block-list\" id=\"block-ea6df04a-d4fe-47b9-82e7-b165d54309d0\"><li><a href=\"https:\/\/learnhowwp.com\/add-history-back-button-divi\/\">Add a History Back Button in Divi Theme<\/a><\/li><li><a href=\"https:\/\/learnhowwp.com\/remove-links-portfolio-divi\/\">Remove Links on Portfolio Module in Divi Theme<\/a><\/li><li><a href=\"https:\/\/learnhowwp.com\/move-blurb-icon-right-divi\/\">How to Move Blurb Icon to Right in Divi Theme<\/a><\/li><\/ul>\n\n\n\n<p>Leave a comment below if you have any questions. Don\u2019t forget to subscribe to the Newsletter to receive the latest tutorials in your inbox.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I will share the steps to remove text you see when you hover on images in Divi theme. When you hover over an image you will see the title of the image in a tool tip. Here is a screenshot of what the text looks like. This text is the Title Text [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[8,7],"tags":[],"class_list":["post-897","post","type-post","status-publish","format-standard","hentry","category-blog","category-divi-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress<\/title>\n<meta name=\"description\" content=\"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress\" \/>\n<meta property=\"og:description\" content=\"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/\" \/>\n<meta property=\"og:site_name\" content=\"LearnHowWordPress\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-20T12:00:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-11T06:53:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg\" \/>\n<meta name=\"author\" content=\"learnhowwp.com\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"learnhowwp.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/\"},\"author\":{\"name\":\"learnhowwp.com\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/#\\\/schema\\\/person\\\/12f506c7740d6582e4ab1ca083e5992f\"},\"headline\":\"How to Remove Hover Text from Images in Divi Theme\",\"datePublished\":\"2021-03-20T12:00:53+00:00\",\"dateModified\":\"2021-05-11T06:53:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/\"},\"wordCount\":373,\"commentCount\":15,\"image\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/learnhowwp.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/image-title-text-tooltip.jpg\",\"articleSection\":[\"Blog\",\"Divi Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/\",\"url\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/\",\"name\":\"How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/learnhowwp.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/image-title-text-tooltip.jpg\",\"datePublished\":\"2021-03-20T12:00:53+00:00\",\"dateModified\":\"2021-05-11T06:53:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/#\\\/schema\\\/person\\\/12f506c7740d6582e4ab1ca083e5992f\"},\"description\":\"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#primaryimage\",\"url\":\"https:\\\/\\\/learnhowwp.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/image-title-text-tooltip.jpg\",\"contentUrl\":\"https:\\\/\\\/learnhowwp.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/image-title-text-tooltip.jpg\",\"width\":679,\"height\":387,\"caption\":\"Image title text in tooltip on hover\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/remove-title-text-image-hover\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.learnhowwp.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Remove Hover Text from Images in Divi Theme\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/#website\",\"url\":\"https:\\\/\\\/www.learnhowwp.com\\\/\",\"name\":\"LearnHowWordPress\",\"description\":\"WordPress Tutorials Tips &amp; Tricks\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.learnhowwp.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.learnhowwp.com\\\/#\\\/schema\\\/person\\\/12f506c7740d6582e4ab1ca083e5992f\",\"name\":\"learnhowwp.com\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g\",\"caption\":\"learnhowwp.com\"},\"url\":\"https:\\\/\\\/learnhowwp.com\\\/author\\\/learnhowwp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress","description":"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/","og_locale":"en_US","og_type":"article","og_title":"How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress","og_description":"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.","og_url":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/","og_site_name":"LearnHowWordPress","article_published_time":"2021-03-20T12:00:53+00:00","article_modified_time":"2021-05-11T06:53:34+00:00","og_image":[{"url":"https:\/\/www.learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg","type":"","width":"","height":""}],"author":"learnhowwp.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"learnhowwp.com","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#article","isPartOf":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/"},"author":{"name":"learnhowwp.com","@id":"https:\/\/www.learnhowwp.com\/#\/schema\/person\/12f506c7740d6582e4ab1ca083e5992f"},"headline":"How to Remove Hover Text from Images in Divi Theme","datePublished":"2021-03-20T12:00:53+00:00","dateModified":"2021-05-11T06:53:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/"},"wordCount":373,"commentCount":15,"image":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg","articleSection":["Blog","Divi Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/","url":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/","name":"How to Remove Hover Text from Images in Divi Theme - LearnHowWordPress","isPartOf":{"@id":"https:\/\/www.learnhowwp.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#primaryimage"},"image":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg","datePublished":"2021-03-20T12:00:53+00:00","dateModified":"2021-05-11T06:53:34+00:00","author":{"@id":"https:\/\/www.learnhowwp.com\/#\/schema\/person\/12f506c7740d6582e4ab1ca083e5992f"},"description":"In this article you will find the steps and the jQuery code to remove the title text that you see when you hover over an image in Divi theme.","breadcrumb":{"@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#primaryimage","url":"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg","contentUrl":"https:\/\/learnhowwp.com\/wp-content\/uploads\/2021\/01\/image-title-text-tooltip.jpg","width":679,"height":387,"caption":"Image title text in tooltip on hover"},{"@type":"BreadcrumbList","@id":"https:\/\/www.learnhowwp.com\/remove-title-text-image-hover\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.learnhowwp.com\/"},{"@type":"ListItem","position":2,"name":"How to Remove Hover Text from Images in Divi Theme"}]},{"@type":"WebSite","@id":"https:\/\/www.learnhowwp.com\/#website","url":"https:\/\/www.learnhowwp.com\/","name":"LearnHowWordPress","description":"WordPress Tutorials Tips &amp; Tricks","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.learnhowwp.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.learnhowwp.com\/#\/schema\/person\/12f506c7740d6582e4ab1ca083e5992f","name":"learnhowwp.com","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97fefb4497e1aa13fc8e4f5cb95e2f3a1270a69748dd74e85cecaab07cbdaa2?s=96&d=mm&r=g","caption":"learnhowwp.com"},"url":"https:\/\/learnhowwp.com\/author\/learnhowwp\/"}]}},"_links":{"self":[{"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/posts\/897","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/comments?post=897"}],"version-history":[{"count":3,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/posts\/897\/revisions"}],"predecessor-version":[{"id":1316,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/posts\/897\/revisions\/1316"}],"wp:attachment":[{"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/media?parent=897"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/categories?post=897"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/learnhowwp.com\/wp-json\/wp\/v2\/tags?post=897"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}