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...

01 HTML Formatting Tags (Part 2)

In this article we will take a look on more HTML Formatting Tags:


  1. Mark tag.
  2. Small tag.
  3. Pre tag (preformatted tag).
  4. Subscript tag
  5. Superscript tag.
  6. Deleted tag.
  7. Inserted tag.

Mark tag: This tag represents highlighted text in your html document
example: This is <mark>highlighted</mark> text.

Small tags: This tag represents small text in your html document.
example: This is <small>small</small> text.

Pre tags: This tag will render the text as it is in your document just like you entered in your html file.
example: This is <pre>pre formatted           tag</pre> text.

Subscript tags: This tag represents subscript text in your html document.
example: This is <sub>subscript</sub> text.

Superscript tags: This tag represents superscript text in your html document.
example: This is <sup>superscript</small> text.

Deleted tags: This tag represents deleted text in your html document.
example: This is <del>deleted</del> text.

Inserted tags: This tag represents inserted text in your html document.
example: This is <ins>inserted</ins> text.


Full Tutorial:




Comments

Popular Posts