Skip to main content

Featured

How To Remove JotForm Branding (With Using Code)

 1. Include the latest jQuery file in your functions.php file: Script Code (Open functions.php file and include this script) : function jquery_cdn_script() {        wp_enqueue_script( 'jquery-script', 'https://code.jquery.com/jquery-3.6.0.min.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'jquery_cdn_script' ); 2. Now after inserting the above code. Open the footer.php file and copy paste the below code just before the wp_footer() function. The reason why we are inserting after the wp_footer() function because it loads all of the JS scripts in to your theme. So make sure jQuery cdn  file  get loads first and then it will run our below JS Script. Code: <script> var $ = jQuery.noConflict(); jQuery(document).ready(function(jQuery) { "use strict"; $('iframe').contents().find("head").append($("<style type='text/css'>  div.formFooter{ display:none !important; } .jf-branding{ disp...

05 - HTML Images and Image Mapping

In this article we will take a look on HTML Image and how to do Image mapping in HTML:

HTML Image:

Image play main role in any website, without image the website will look dull and will not attract the newly come visitors.

To add images in HTML we use 'img' tag. And inside that img tag we refer the image file path with using 'src' source attribute to locate where the image is being placed.

Syntax: <img src="FILE_PATH_HERE"/>

ALT Attribute in img tag:

 This attribute is play most important role in two things, First thing its good for SEO optimization because the google will not know that your website contains image unless you use 'alt' attribute in your img tag. We can write the small info about the image in 'alt' attribute.

For example; if your place the logo for your website you can write Logo in your alt attribute.

Setting width and height in img tag:

To set width and height of your image you can use 'width' and 'height' attributes in img tag.


Adding Favicon in your page:

Favicon is located in page tab just before of your page title. Favicon will be add into the head section of your html page inside head section we use 'link' tag.

Syntax:  <link href="favicon.png"/>

Inside 'href' attribute we write the favicon image file path. The size of favicon will be 13px by 13px.


Image Mapping:

For image mapping please follow the below video tutorial.


Full Tutorial:






Comments

Popular Posts