Wednesday, 5 June 2024

How To Add Social media Links in Blogger ..

 If you want to provide the link to your social site link to your viewers such as Facebook, Youtube, Instagram, Telegram etc then  here is the step by step process given below .


 First Code= Paste This code in Head section.


<script src="https://kit.fontawesome.com/2a22590b5b.js" crossorigin="anonymous"></script>

Second Code=Paste the Below Code in the content section of  Html/JavaScript Gadgets .


<div style="font-size: 2rem ;text-align:center">

  <a href="URL-HERE" title="Facebook" target="_blank" rel="nofollow"><i

  class="fa-brands fa-facebook"></i></a>

  <a href="URL-HERE" title="Twitter" target="_blank" rel="nofollow"><i

  class="fa-brands fa-twitter"></i></a>

  <a href="URL-HERE" title="Pinterest" target="_blank"

  rel="nofollow"><i class="fa-brands

  fa-pinterest"></i></a>

  <a href="URL-HERE" title="Instagram" target="_blank"

  rel="nofollow"><i class="fa-brands

  fa-instagram"></i></a>

  <a href="URL-HERE" title="Youtube" target="_blank" rel="nofollow"><i

  class="fa-brands fa-youtube"></i></a>

 <a href="URL-HERE" title="Telegram" target="_blank" rel="nofollow"><i

  class="fa-brands fa-telegram"></i></a>

</div>



Note:=Replace your social site link on URL-HERE..


Monday, 3 June 2024

How To Disable Copy/Paste and Right Click in Blogger To Protect your Content

How to disable the copy/Paste option in Blogger. If you want to disable the copy/paste option you can block it easily and you can prevent copying your valuable content without your permission. 


Follow these 4 steps process Disable copy/paste & Right click option in Blogger.

  1. Log in to the Blogger Account Dashboard.
  2. Now Go to the Theme Section.
  3. In the Theme Section go to customize with Edit HTML.
  4. Copy the code below and paste it before the </body> tag.


To Disable the Selection & copy.

<script> $('body').bind('copy cut drag drop', function (e) { e.preventDefault(); }); </script>

To disable the RIght-CLick 

 <script> document.addEventListener('contextmenu', function (e) { e.preventDefault(); }); </script>