Navigation Menu Home made Post

fellow bloggers might want to create a navigation menu like that below his easy way

Halaman 1 dari 12: 12 3 4 Selanjutnya Akhir

buddy wrote directly into the
LAYOUT>>> EDIT HTML>>> ADD WIDGET / ADD ELEMENT PAGE) and Copas code below:

<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)==".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=7;
var displayPageNum=3;
var firstPageWord = 'Awal';
var endPageWord = 'Akhir';
var upPageWord ='Sebelumnya';
var downPageWord ='Selanjutnya';



var labelHtml = '<span class="showpageNum"><a href="/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="/">'+ upPageWord +'</a></span>';
}
}else{
upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>';
}

fFlag++;
}

if(p==(thisNum-1)){
html += ' <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="/">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="/">'+ firstPageWord +' </a></span>'+upPageHtml+' '+html +' ';
}else{
html = ''+labelHtml + firstPageWord +' </a></span>'+upPageHtml+' '+html +' ';
}
}

html = '<div class="showpageArea"><span style="padding: 2px 4px 2px 4px;margin: 2px 2px 2px 2px;border: 1px solid #333; background-" class="showpage">Halaman '+thisNum+' dari '+(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&callback=showpageCount&max-results=99999" type="text/javascript"></script>
READ MORE ...

how to make a banner with the simple


The easy way to make a banner directly enter the picture, the image includes at least two or up to you just come in here and follow his ways after his input html code into your blog, and so your banner is ok good luck
READ MORE ...

How to Register Search Engine

For beginners may take the bloggers that if we create a website or blog will automatically indexed or are on the list of search engines, and in fact not the case. Just as a school, so that our names listed on the register of students, of course, we must first make application to the school. Similarly, search engines, so that our blog indexed in search engines, then we must first register our own blog on the site search engine owners.

Number of search engines is very much at all, and at this moment the most famous in the world is Google, Yahoo, and Msn. If we want to blog indexed on their search engines, then our duty is to register our blog URL in their search engine. If anyone did not know where to register their blogs, so please refer to the following text:

# List of Google
To sign up to google, please visit http://www.google.com/addurl/ buddy, well if it had been on the signup page there are several steps that must be done, namely to fill in a form that provided:



* URL -> Content with blog URL pal.


* Comments -> Fill in the keyword or keywords associated with your blog buddies


* Fill the empty box with the available verification letter


* Click the Add URL


* Done.



After registering to my friend Google, it does not necessarily blog buddies indexed on its search engine, but requires 3 to 4 weeks a new blog can be indexed pal. If you have 3 to 4 weeks, then try to type the blog address on my friend google search engine, if it is indexed or not? if not, try waiting a few weeks, and write back to your blog address mate, If it is still not well, try again deh daftarin his blog to google like a step above. Or maybe my friend can not wait to indexed, this could actually happen, only in 3 or 4 days my friend's blog can be indexed in google. Want to know how? Just refer to the next post, maybe one or two days to finish my next article created.



* List of Yahoo!



To sign up for yahoo! please buddy visit https: / / siteexplorer.search.yahoo.com / submit. However, to register to yahoo, my friend must first have a yahoo account, because the need to log in to your account first yahoo. For those who do not have a yahoo account (email on yahoo) please make a first, for those who already have, my friend lived login with username and password pal. If already logged in, will have available columns for the contents, please fill in the URL field with my friend, then click the Add URL, finished. If you want to enter a feed address and gentlemen, my friend could be putting. Remember, feed address in blogger atom.xml just add the URL behind the blog buddies, for example: for my blog has the following feed address:

http://my tutorial date/atom.xml

or use the www was the same:

http://www.my tutorial date.com/atom.xml



* Register to Msn



For a list of the Msn, please visit our pal pal http://search.msn.com/docs/submit.aspx?FORM=WSDD2 please verify the contents of the letter and the URL of buddies on the box provided, then click the Submit button URL, finished.

If my friend had more desires, which my friend blog's URL in the tens of indexed search engine, my friend could use the help submitter site. Try just click the banner below:

Submit Your Site To The Web's Top 50 Search Engines for Free!

Pal task of filling only the URL address of his blog, and just write an email address, then click the Submit Your Site.

If you want faster famous try pinging the kinds of aggregators, please click the link below:

Ping-O-Matic

My friend who lives in filling out the form provided.
By KR
READ MORE ...

NEW YEARS DAY


NEW YEAR'S DAY

January 1 The first day of the calendar year.

NEW YEAR'S DATE

The ancient Roman calendar used March 1 as New Year's Day. Later, the ancient Romans used January 1 as the beginning of the new year. In the Middle Ages, most European countries used March 25, the Christian holiday called the Day of Ascension, as the beginning of the new year. Until 1600, most Western countries have been using the system of the revised calendar, which is called the Gregorian calendar.

Calendar that has so far used it to use again as the January 1 New Year's Day. England and its colonies in the United States into using the dating system in 1752. Most people commemorate the new year on the date specified by their religion. Jewish New Year, Rosh Hashanah, is celebrated in September or early October. Hindus celebrate on certain dates. Muslims use a calendar system that consists of 354 days each year. Therefore, their new year falls on different dates vary in the Gregorian calendar every year.

HISTORY AND HOW TO celebrate the past

Most people in the past year a new start on the day of harvest. They do habits to leave the past and purify themselves for the new year. Ancient Persians presents gifts for New Year's eggs, as symbols of productivity. The ancient Romans gave each other gifts holy tree branch cuts. Later, they gave each other nuts or gold coins with the image layer Janus, the god of doors and all the beginning. Month of January received a two-faced god of this (one face facing forward and one facing backwards). Romans dedicated the gift to the emperor. The emperors gradually require gifts like that. Celtic priests to cut mistletoe branch, which is considered sacred, to the people they are. Celtic people take a lot of new habits of the Romans, who occupied the British Isles in the year 43 AD.

In the year 457 AD the Christian church banned this practice, the new year with another habit which he considered a pagan practice. In the year 1200 the British leaders to follow the Roman custom which obliges them to give people a new year gift. The husband in the UK gave money to their wives to buy a simple brooch (pin). This custom disappeared in the 1800s, but the term pin money, which means less pocket money, still in use. Many of the people of the colony in New England, America, which celebrated the new year by firing guns into the air and shouted, while others follow the celebration at the church or open party.

MODERN FESTIVALS

Although the new year is also a Christian holy day, the new year has long been a secular tradition which makes it as a national public holiday for all Americans. In the United States, mostly done the night before the celebration of the new year, on December 31, where the people go to parties or watch television programs from Times Square in the heart of New York, where many people gather. At midnight the bells rang, sirens sounded, fireworks exploded and people menerikkan "Happy New Year" and sang Auld Lang Syne.

On January 1, Americans visiting relatives and friends or watching television: Flower Parade Tournament of Roses before the American football competition held in the Rose Bowl California; or the Orange Bowl in Florida; Cotton Bowl in Texas; or Sugar Bowl in Louisiana.
READ MORE ...
Ping your blog, website, or RSS feed for Free