Navigation Page Number

An easy way to make the numbers next page, this widget is used to facilitate the visitors search for previous articles by selecting the number posted on the back. is also very easy to not need to fuss over just a bit ago entered code to html / java script.



This sample of images










1. Login Blogger

2. Go to Edit Layout

3. Add Page Element

3. Copy code below and paste into an empty area




<style>

.showpageArea {padding: 0 2px;margin-top:10px;margin-bottom:10px;

}

.showpageArea a {border: 1px solid #505050;

color: #000000;font-weight:normal;

padding: 3px 6px !important;

padding: 1px 4px ;margin:0px 4px;

text-decoration: none;

}

.showpageArea a:hover {

font-size:11px;

border: 1px solid #333;

color: #000000;

background-color: #FFFFFF;

}



.showpageNum a {border: 1px solid #505050;

color: #000000;font-weight:normal;

padding: 3px 6px !important;

padding: 1px 4px ;margin:0px 4px;

text-decoration: none;



}

.showpageNum a:hover {

font-size:11px;

border: 1px solid #333;

color: #000000;

background-color: #FFFFFF;



}

.showpagePoint {font-size:11px;

padding: 2px 4px 2px 4px;

margin: 2px;

font-weight: bold;

border: 1px solid #333;

color: #fff;

background-color: #000000;





}



.showpage a:hover {font-size:11px;

border: 1px solid #333;

color: #000000;

background-color: #FFFFFF;



}

.showpageNum a:link,.showpage a:link {

font-size:11px;

padding: 2px 4px 2px 4px;

margin: 2px;

text-decoration: none;

border: 1px solid #0066cc;

color: #0066cc;

background-color: #FFFFFF;}



.showpageNum a:hover {font-size:11px;

border: 1px solid #333;

color: #000000;

background-color: #FFFFFF;

}

</style>






<script type="text/javascript">



function showpageCount(json) {

var thisUrl = location.href;

var htmlMap = new Array();

var isFirstPage = thisUrl.substring(thisUrl.length-14,thisUrl.length)==&

quot;.blogspot.com/";

var isLablePage = thisUrl.indexOf("/search/label/")!=-1;

var isPage = thisUrl.indexOf("/search?updated")!=-1;

var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf("/search/label
/") 14,thisUrl.length) : "";

thisLable = thisLable.indexOf("?")!=-1 ?
thisLable.substr(0,thisLable.indexOf("?")) : thisLable;

var thisNum = 1;

var postNum=1;

var itemCount = 0;

var fFlag = 0;

var eFlag = 0;

var html= '';

var upPageHtml ='';

var downPageHtml ='';





var pageCount=3;

var displayPageNum=4;

var firstPageWord = 'First';

var endPageWord = 'Last';

var upPageWord ='Previous';

var downPageWord ='Next';






var labelHtml = '<span class="showpageNum"><a href=&

quot;/search/label/' thisLable '?&max-results=' pageCount
'">';



for(var i=0, post; post = json.feed.entry[i]; i ) {

var timestamp = post.published.$t.substr(0,10);

var title = post.title.$t;

if(isLablePage){

if(title!=''){

if(post.category){

for(var c=0, post_category; post_category = post.category[c]; c ) {

if(encodeURIComponent(post_category.term)==thisLable){

if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){

if(thisUrl.indexOf(timestamp)!=-1 ){

thisNum = postNum;

}



postNum ;

htmlMap[htmlMap.length] = '/search/label/' thisLable '?updated-max='

timestamp 'T00%3A00%3A00%2B08%3A00&max-results=' pageCount;

}

}

}

}//end if(post.category){



itemCount ;

}



}else{

if(title!=''){

if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){

if(thisUrl.indexOf(timestamp)!=-1 ){

thisNum = postNum;

}



if(title!='') postNum ;

htmlMap[htmlMap.length] = '/search?updated-max=' timestamp
'T00%3A00%3A00%2B08%3A00&max-results=' pageCount;

}

}

itemCount ;

}

}



for(var p =0;p< htmlMap.length;p ){

if(p>=(thisNum-displayPageNum-1) && p<(thisNum displayPageNum)){

if(fFlag ==0 && p == thisNum-2){

if(thisNum==2){

if(isLablePage){

upPageHtml = labelHtml upPageWord '</a></span>';

}else{

upPageHtml = '<span class="showpage"><a href="/"&
gt;' upPageWord '</a></span>';

}

}else{

upPageHtml = '<span class="showpage"><a href="'
htmlMap[p] '">' upPageWord '</a></span>';

}



fFlag ;

}



if(p==(thisNum-1)){

html = '&nbsp;<span class="showpagePoint"><u>'

thisNum '</u></span>';

}else{

if(p==0){

if(isLablePage){

html = labelHtml '1</a></span>';

}else{

html = '<span class="showpageNum"><a href="/"&
gt;1</a></span>';

}

}else{

html = '<span class="showpageNum"><a href="'
htmlMap[p] '">' (p 1) ' </a></span>';

}

}



if(eFlag ==0 && p == thisNum){

downPageHtml = '<span class="showpage"> <a href="'
htmlMap[p] '">' downPageWord '</a><
/span>';

eFlag ;

}

}//end if(p>=(thisNum-displayPageNum-1) && p<(thisNum displayPageNum)){

}//end for(var p =0;p< htmlMap.length;p ){



if(thisNum>1){

if(!isLablePage){

html = '<span class="showpage"><a href="/"&
gt;' firstPageWord ' </a></span>' upPageHtml ' '
html ' ';

}else{

html = '' labelHtml firstPageWord ' </a></span>'
upPageHtml ' ' html ' ';

}

}



html = '<div class="showpageArea"><span style="font-
size:11px;padding: 2px 4px 2px 4px;margin: 2px 2px 2px 2px;color:
#000000;border: 1px solid #333; background-color: #FFFFFF;"
class="showpage">Page ' thisNum ' of '
(postNum-1) ': </span>' html;



if(thisNum<(postNum-1)){

html = downPageHtml;

html = '<span class="showpage"><a href="'
htmlMap[htmlMap.length-1] '"> ' endPageWord '</a><
/span>';

}



if(postNum==1) postNum ;

html = '</div>';



if(isPage || isFirstPage || isLablePage){

var pageArea = document.getElementsByName("pageArea");

var blogPager = document.getElementById("blog-pager");



if(postNum <= 2){

html ='';

}



for(var p =0;p< pageArea.length;p ){

pageArea[p].innerHTML = html;

}



if(pageArea&&pageArea.length>0){

html ='';

}



if(blogPager){

blogPager.innerHTML = html;

}

}



}

</script>



<script src="/feeds/posts/summary?alt=json-in-script&
amp;callback=showpageCount&max-results=99999" type="text/javascript"&
gt;</script>




On line 5, you may need to change the "blogspot.com" to reflect your domain extention if you use a custom domain.



var isFirstPage = thisUrl.substring(thisUrl.length-14,thisUrl.length)==&<br/>
quot;.blogspot.com/&quot;;




This default installation should work fine for anyone hosted on Blog*Spot or a dot.com domain, but you will need to alter this section if your custom domain ends in .co.uk or .info for example.



In lines 19 and 20, you can change these values to alter how many posts are displayed on each page, and how many links will be visible at the same time.



The var pageCount = 5; section defiines the number of posts displayed on each page, while var displayPageNum = 5; defines the number of links which are displayed (eg: 1 - 2 - 3 - 4 - 5) beneath the posts section.

Baca Selengkapnya......

Floating Message in Top Bar

How to create a float on the top of the message header blog, is very simple you only need to enter script jquery-1.2.6.min.js on your template.


Message that is displayed follow scrool the mouse to remain over if you rub scrool bar


Tutorial :


1. Input this code in your template


#message_box {

position: absolute;

top: 0; left: 0;

z-index: 10;

background:#ffc;

padding:5px;

border:1px solid #CCCCCC;

text-align:center;

font-weight:bold;

width:99%;

}




2. Input this Script in <head> blog



<script language='javascript' src='http://www.geocities.com/agung_sujiwa2001

/jquery-1.2.6.min.js' type='text/javascript'/>


3. Copy code below and input into the <body>



<div id='message_box'>

<img id='close_message' src='http://www.geocities.com/agung_sujiwa2001/12-em-

cross.png' style='float:right;cursor:pointer'/>

YOUR MESSAGE IN HERE

</div>




4. Preview to anticipate that the error does not occur
5. Save Setting


LIVE DEMO

Look in top bar

Baca Selengkapnya......

Disable Ctrl + C and Drag

Chapfallen articles because you often imitated as other people? sometimes we also often made chapfallen same blogger who like to play another copy and paste the article, especially if not installed the original source article. stingy and if you do want the same article is another blogger I recommend you attach the script code articles. Let's go start


1. Log In Blogger


2. Select the Layout / Edit HTML


3. Backup your template


4. Add the code below into the <head>



<script type='text/javascript'>


/***********************************************

* Disable Text Selection script- © Dynamic Drive DHTML code library
(www.dynamicdrive.com)

* This notice MUST stay intact for legal use

* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code

***********************************************/

function disableSelection(target){

if (typeof target.onselectstart!="undefined") //IE route

target.onselectstart=function(){return false}

else if (typeof target.style.MozUserSelect!="undefined") //Firefox route

target.style.MozUserSelect="none"

else //All other route (ie: Opera)

target.onmousedown=function(){return false}

target.style.cursor = "default"

}

//Sample usages

//disableSelection(document.body) //Disable text selection on entire body

//disableSelection(document.getElementById("mydiv")) //Disable text
selection on element with id="mydiv"

</script>



5. Save Setting


See the results


LIVE DEMO

Baca Selengkapnya......

Pasang Favicon Untuk Blogger

Favicon sangat penting bagi blogger, karna itu adalah sebuah simbol/icon Blog. buat yang baru buat Blog di www.blogger.com icon kamu masih memakai icon Blog seperti dibawah ini.



Tapi apakah bisa icon blog diganti dengan icon milik kita...?? jawabannya adalah BISA.. mari ikuti langkah-langkah berikut :



1. Siapkan gambar icon kamu

2. Format lah gambar kamu menjadi .ico kamu bisa memformat di http://www.favicongenerator.com/

3. Setelah kita memliki .ico kita Upload di http://www.geocities.com

4. Ambil code alamat URL icon yang kita upload tadi. contohnya seperti ini

http://www.geocities.com/agung_sujiwa2001/studiogame/favicon.ico


Cara Pasang di Blog


1. Masuk ke Akun Blogger anda


2. Pilih Tata Letak dan pilih Edit HTML


3. Cari code dibawah ini


<head>
 
<b:include data="'blog'" name="'all-head-content'/">



4. Copy code dibawah ini lalu Paste dibawah code yang tadi


<link href='Masukan Alamat Url Icon kamu disini'rel='icon' type='image/vnd.microsoft.icon'/>


5. Klik Save Setting / Simpan Template


Selamat mencoba

Baca Selengkapnya......

Right Click Error

Disable right click function on your blog page, so your blog becomes safe from the ignorant blogger.


we just started


1. Sign in Blogger

2. Go to the Edit Layout / Add Page Element

3. Select the HTML / Java Script

4. Sopy code below and paste in the empty area



<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="Can't Right Click!";

///////////////////////////////////

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>



5. Save Setting


Finished


Change Message var message="Can't Right Click!"; with which you want


LIVE DEMO

Baca Selengkapnya......
 

Followers

About Me