How to remove image title attribute on hover WordPress

How to remove image title attribute on hover WordPress

Some page builders and themes automatically add title to each image. In this video, we will see how to remove the image title that appears when you hover over an image. Initially, all existing images have a title attribute but when the page is load, it will delete automatically by the jQuery removeAttr() method. Not…

| |

WordPress: How to make parent menu item clickable when they have a submenu

Problem: Parent menu item not clickable when submenu enabled Some WordPress theme by default disables parent menu links when they have dropdown menu items. If you have a submenu enabled the parent menu item is no longer clickable to link through to the page, it just opens the submenu. We’ll make the parent menu items…

How to download PDF files automatically instead of opening in new tab
|

How to download PDF files automatically instead of opening in new tab

By default, most downloadable PDF files usually open in a new window or tab. It’s true for the static site or WordPress sites also. This document contains steps on how to make the browser download PDF files automatically, rather than open in a new tab. We’ll use a simple jQuery solution for it.

Bootstrap 4 – changes fixed-top Navbar background color on scrolling
| |

Bootstrap 4 – changes fixed-top Navbar background color on scrolling

// navbar background color change on scroll $(window).scroll(function(){ var scroll = $(window).scrollTop(); if(scroll < 300){ $(‘.fixed-top’).css(‘background’, ‘transparent’); } else{ $(‘.fixed-top’).css(‘background’, ‘rgba(23, 162, 184, 0.9)’); } });