Showing posts with label Blog Tricks. Show all posts
Showing posts with label Blog Tricks. Show all posts

Page Number Navigation Bar for Blogger

Blogger Buster:
Numbered Page Navigation for Blogger


The link explains how to install a page navigation number footer on your blogger.

Change Blogger Title Post SEO

Change the default post title of the blogger to get better SEO results. Then you can easily drive traffic to your blog from Search Engines. To change blogger title:

Go to Blogger Dashboard > Layout > Edit HTML
Back up your template before making any changes.

Now search for this code in your template.

<title><data:blog.pagetitle/></title>

Replace this code with:

<b:if cond='data:blog.pageName == &quot;&quot;'>
<title><data:blog.title/></title><b:else/>
<title><data:blog.pageName/><data:blog.title/></title></b:if>

Save your Blogger Template.

Code installed successfully at
Salman Yaqub Bahrain Photography

Disable Right Click Blogger Copyright

Disable right click on your blogspot blogger
Copy paste the code below into an element on blogger.
Go to blogger Dashboad > Layout > Add Page Element > HTML/Javascript

<script language="JavaScript">
<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>

To change the alert message replace "Function Disabled!" with what you choose.