4 Blogger Tips You Must Know

Blogger is the best platform for creating a blog.

You can create a blog as easy as creating email address, you just have to choose the name and publish it. Below are some Blogger Tips You Must Know to keep your content secure from copying.

We Will be Working on

Keeping your image private so no one can copy that on there blog.

You will see how to disable right click in blogger with a small script.

You will learn how to disable image dragging.

You will know how to remove preloader gear icon

Turn Off Gear Loading Icon in Blogger

If you’re using the new Blogger interface: Go to Dashboard – Theme- Customise – Advanced – Add CSS – paste the following code – Press enter after the last character of the last line } – Apply to Blog

.ss,.blogger-gear{
display: none;
}
turn off gear icon in blogger, preloader

Disable Image Dragging

Go to template and edit html. Search </head>

Now you will see <body with a something more code after it so you have to paste the below code right after it. The code will look like in image

ondragstart=’return false’ onselectstart=’return false’

disable image dragging in blogger

Disable Right click On blogger

We will use this to disable right Click on blogger and securing text from copying.

 Click in Code and Press Ctrl+F type <head> Paste the Code after the <head> tag then click Save template button.

<script type=”text/javascript”>
//<![CDATA[
function nocontext(e) {
var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
if (clickedTag == “IMG”) {
alert(alertMsg);
return false;}}
var alertMsg = “Image context menu is disabled”;
document.oncontextmenu = nocontext;
//]]>
</script>

disable right click in blogger

Change alert message here

disable right click on blogger alert message

Also Visit: How to Convert PDF To Text

Disable image opening on click

We need this to secure our image from right clicking and opening in new tab.

STEP 1:

Open up your post editor and create a new post (this will work on old posts as well) and add an image.

STEP 2:

Click on the image. This will highlight the image.

STEP 3:

Click on “Link” to remove the link from the image.

remove link from image

You must know these Blogger Tips to run a successful blog.

Leave a Comment