BERANDA ABOUT US ADS : 1 USD FOREVER ASMARA BIOGRAFI BUKU BUKU PINTAR
CHRISTIAN FAITH DISCLAIMER DUNIA KERJA ENTREPRENEURS GO PUBLIC (IPO)
KESEHATAN LIST OF ALL ARTICLES MARKETING MY STARTUP OTHERS
TIP SUKSES DAN KAYA TIPS BLOGGER TIP SEO CONTACT ME PROFESSIONAL WRITER
Ditolak google adsense seperti gue ( richard nata ) ? tenang... ada cliksor. ha...7x http://richardnata.blogspot.com/2015/04/ditolak-google-adsense-seperti-gue.html
SELAIN CLICKSOR, MASIH ADA PROPELLER ADS. HA...7X
Before I start - Teknik SEO MLM Backlink. http://richardnata.blogspot.com/2015/04/teknik-seo-mlm-backlink.html
(out of 100's of systems, this is my number #1 recommendation ^^)
Ditolak google adsense seperti gue ( richard nata ) ? tenang... ada cliksor. ha...7x http://richardnata.blogspot.com/2015/04/ditolak-google-adsense-seperti-gue.html
SELAIN CLICKSOR, MASIH ADA PROPELLER ADS. HA...7X
Before I start - Teknik SEO MLM Backlink. http://richardnata.blogspot.com/2015/04/teknik-seo-mlm-backlink.html
(out of 100's of systems, this is my number #1 recommendation ^^)
KALAU SUKA BERMAIN GAME JANGAN LUPA KLIK PLAY NOW ATAU DOWNLOAD.
WITH 1 USD THEN YOUR TEXT POSTED IN THE ARTICLE FOREVER. 1 USD PER ARTICLE FOREVER.
WITH 5 USD THEN YOUR BANNER POSTED IN THE ARTICLE FOREVER. 5 USD PER ARTICLE FOREVER.
WITH 10 USD THEN YOUR BIG BANNER POSTED IN THE ARTICLE FOREVER. 10 USD PER ARTICLE FOREVER.
CONTACT RICHARD.NATA@YAHOO.CO.ID
WITH 1 USD THEN YOUR TEXT POSTED IN THE ARTICLE FOREVER. 1 USD PER ARTICLE FOREVER.
WITH 5 USD THEN YOUR BANNER POSTED IN THE ARTICLE FOREVER. 5 USD PER ARTICLE FOREVER.
WITH 10 USD THEN YOUR BIG BANNER POSTED IN THE ARTICLE FOREVER. 10 USD PER ARTICLE FOREVER.
CONTACT RICHARD.NATA@YAHOO.CO.ID
WITH 5 USD THEN YOUR BANNER POSTED IN THE ARTICLE FOREVER. 5 USD PER ARTICLE FOREVER.
WITH 10 USD THEN YOUR BIG BANNER POSTED IN THE ARTICLE FOREVER. 10 USD PER ARTICLE FOREVER.
CONTACT RICHARD.NATA@YAHOO.CO.ID
Memasang widget Font Resizer di Blogger
Pernahkah anda melihat website yang mengijinkan anda mengubah ukuran font sesuka hati ? Apakah anda menjadi tertarik untuk memiliki widget tersebut ? Anda tidak usah bingung jika anda tidak bisa membuat seperti itu, saya akan ajarkan bagaimana caranya dengan mudah memasang widget untuk merubah font di Blogger
Fitur widget TrikBlogger Font Resizer
1. Bisa menambah ukuran font
2. Bisa mengurangi ukuran font
3. Bisa direset ke ukuran semula ( anda harus melakukan pengaturan manual javascript anda berdasar ukuran font di css blog anda )
Kekurangan ( Jika anda bisa memperbaikinya, tolong beritahu saya )
1. Stylenya reset jelek ( jika anda menemukan gambar yang cocok, silahkan komentar di post ini dengan menyertakan link gambarnya )
2. Setelah menekan + atau - ataupun reset, layar sepertinya kembali ke posisi semula.
Maksud : Jika misal ada website berisi 300 kata dan letak scroll ditengah, maka setelah ditekan +, layar ke atas karena font membesar sehingga letak scroll menjadi lebih keatas, sehingga lebih menganggu
Info :
- Gambar berasal dari MBT, tapi javascriptnya tidak
- Javascript berasal dari stackoverflow
Langkah pertama yang harus diingat adalah membackup template blogger anda, buka kembali :
Cara membackup template blogger anda
Langkah kedua buka blogger > Template > Edit HTML
Fitur widget TrikBlogger Font Resizer
1. Bisa menambah ukuran font
2. Bisa mengurangi ukuran font
3. Bisa direset ke ukuran semula ( anda harus melakukan pengaturan manual javascript anda berdasar ukuran font di css blog anda )
Kekurangan ( Jika anda bisa memperbaikinya, tolong beritahu saya )
1. Stylenya reset jelek ( jika anda menemukan gambar yang cocok, silahkan komentar di post ini dengan menyertakan link gambarnya )
2. Setelah menekan + atau - ataupun reset, layar sepertinya kembali ke posisi semula.
Maksud : Jika misal ada website berisi 300 kata dan letak scroll ditengah, maka setelah ditekan +, layar ke atas karena font membesar sehingga letak scroll menjadi lebih keatas, sehingga lebih menganggu
Info :
- Gambar berasal dari MBT, tapi javascriptnya tidak
- Javascript berasal dari stackoverflow
Langkah pertama yang harus diingat adalah membackup template blogger anda, buka kembali :
Cara membackup template blogger anda
Langkah kedua buka blogger > Template > Edit HTMLCara membackup template blogger anda
Memasang Javascript Font Resizer
Mudah sekali, anda tinggal cari </head>
Lalu letakkan javascript ini dibawahnya
<script>
/* sebagian kode ini berasal dari website tanya jawab, yaitu http://stackoverflow.com/ , diberi fitur tambahan dan dibuat kontibel untuk blogger oleh trikblogger.net, sebelumnya tidak menyediakan fitur mengurangi ukuran font */
/*<![CDATA[*/
$(document).ready(function(){
// Reset Font Size
var originalFontSize = $('.post-body').css('font-size');
$(".kembalikanFont").click(function(){
$('.post-body').css('font-size', originalFontSize);
return false;
});
// Increase Font Size
$(".tambahFont").click(function(){
var currentFontSize = $('.post-body').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 14);
var newFontSize = currentFontSizeNum*1.2;
$('.post-body').css('font-size', newFontSize);
return false;
});
// Decrease Font Size
$(".kurangiFont").click(function(){
var currentFontSize = $('.post-body').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 14);
var newFontSize = currentFontSizeNum*0.8;
$('.post-body').css('font-size', newFontSize);
return false;
});
});/*]]>*/
</script>
Ganti 14 atau kode yang diberi background merah dengan ukuran font yang digunakan blog anda ( ukuran di css body atau post-body )
Lalu ganti kode yang diberi background kuning dengan persentase perubahannya, misal 1.2 berarti 120% dari ukuran font 14
Mudah sekali, anda tinggal cari </head>
Lalu letakkan javascript ini dibawahnya
<script>
/* sebagian kode ini berasal dari website tanya jawab, yaitu http://stackoverflow.com/ , diberi fitur tambahan dan dibuat kontibel untuk blogger oleh trikblogger.net, sebelumnya tidak menyediakan fitur mengurangi ukuran font */
/*<![CDATA[*/
$(document).ready(function(){
// Reset Font Size
var originalFontSize = $('.post-body').css('font-size');
$(".kembalikanFont").click(function(){
$('.post-body').css('font-size', originalFontSize);
return false;
});
// Increase Font Size
$(".tambahFont").click(function(){
var currentFontSize = $('.post-body').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 14);
var newFontSize = currentFontSizeNum*1.2;
$('.post-body').css('font-size', newFontSize);
return false;
});
// Decrease Font Size
$(".kurangiFont").click(function(){
var currentFontSize = $('.post-body').css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 14);
var newFontSize = currentFontSizeNum*0.8;
$('.post-body').css('font-size', newFontSize);
return false;
});
});/*]]>*/
</script>
Lalu ganti kode yang diberi background kuning dengan persentase perubahannya, misal 1.2 berarti 120% dari ukuran font 14
Memasang HTML
Pasang kode ini dimana saja.
<b:if cond='data:blog.pageType == "item"'>
<a class='tambahFont' href='#' rel='nofollow'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEje4uyO9Hwt3ldVE7auz_u2xmWu1Rme_kio_3SBV8nlHkHG0TVYBUQJJFh19flBC2CgCaO2cukihWZH3ut7JAGPA4LErQpTgeBnHif54hxnNzGMIWnHIfOBUi34I2UbV1zZP72pqZvHuj4/?imgmax=800'/></a> | <a class='kurangiFont' href='#' rel='nofollow'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhV5EAVpEyALICZgXUWwLBNw2TRBTdhz7YB01vyO-t-T8NQ4_OMgd7u932G4wNVc9jK7skJAHd9vSmVO7u1PIBBgJtmMVfaQVuEMFQYpPrL0Ki9KiZ_HXzCst-wdiWGeP01Bh3HLiVRshM/?imgmax=800'/></a>
<a class='kembalikanFont' href='#'>Reset ↕</a></b:if>
Jika anda ingin meletakkan kode ini dibawah post, letakkan dibawah
<div class='post-footer-line post-footer-line-3'>
atau dibawah juga kode ini
<data:post.body/>
Setelah itu save template anda
Jika misal tidak bisa/tidak work, pasang jquerry di blog anda
Letakkan kode ini dibawah <head>
http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
<b:if cond='data:blog.pageType == "item"'>
<a class='tambahFont' href='#' rel='nofollow'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEje4uyO9Hwt3ldVE7auz_u2xmWu1Rme_kio_3SBV8nlHkHG0TVYBUQJJFh19flBC2CgCaO2cukihWZH3ut7JAGPA4LErQpTgeBnHif54hxnNzGMIWnHIfOBUi34I2UbV1zZP72pqZvHuj4/?imgmax=800'/></a> | <a class='kurangiFont' href='#' rel='nofollow'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhV5EAVpEyALICZgXUWwLBNw2TRBTdhz7YB01vyO-t-T8NQ4_OMgd7u932G4wNVc9jK7skJAHd9vSmVO7u1PIBBgJtmMVfaQVuEMFQYpPrL0Ki9KiZ_HXzCst-wdiWGeP01Bh3HLiVRshM/?imgmax=800'/></a>
<a class='kembalikanFont' href='#'>Reset ↕</a></b:if>
Jika anda ingin meletakkan kode ini dibawah post, letakkan dibawah
<div class='post-footer-line post-footer-line-3'>atau dibawah juga kode ini
<data:post.body/>Setelah itu save template anda
Jika misal tidak bisa/tidak work, pasang jquerry di blog anda
Letakkan kode ini dibawah <head>http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
RESOURCE : HTTP://WWW.TRIKBLOGGER.NET/2014/01/MEMASANG-WIDGET-FONT-RESIZER-DI-BLOGGER.HTML
Love this Post? Spread the Word.
DO NOT FORGET TO CLICK THE PLAY NOW OR DOWNLOAD.
DO NOT FORGET TO CLICK THE PLAY NOW OR DOWNLOAD.
Berapa sih nilai dari blog gue DALAM DOLLAR ? http://richardnata.blogspot.com/2015/04/berapa-sih-nilai-dari-blog-gue-dalam.html
Berapa sih nilai dari blog gue DALAM DOLLAR ? http://richardnata.blogspot.com/2015/04/berapa-sih-nilai-dari-blog-gue-dalam.html
My STARTUP :
A story with millions of choices in it.
Try to imagine this. When you're reading a story on the web or blog, you are given two choices. You can choose the next story based on your own choice. After selecting then you can continue reading the story. Shortly afterwards you will be presented back to the 2 other options. The next choice is up to you. Then you continue the story you are reading. After that you will be faced again with 2 choices. So onwards.
If you feel curious then you can re-read the story by changing your selection. Then you will see a different story with the story that you have read previously. The question now is why is this so? Because the storyline will be varying according to your choice.
Based on the above, then you are faced with two choices. Are you interested in reading my story is? Or you are not interested at all. The choice is in your hands.
If you are interested then spread widely disseminated this article to your family, friends, neighbors, and relatives. You can also distribute it on facebook, twitter, goggle +, or other social media that this article be viral in the world. By doing so it is a new entertainment industry has been created.
Its creator named Richard Nata.
The full articles that talks about this:
19. Start-up strategy in order to earn millions to tens of millions of dollars annually. http://richardnata.blogspot.com/2015/02/start-up-strategy-in-order-to-earn.html
20. Why do I need startup funds from investors? http://richardnata.blogspot.com/2015/05/why-do-i-need-startup-funds-from.html
21. slow but sure vs acceleration. http://richardnata.blogspot.com/2015/05/slow-but-sure-vs-acceleration.html
Try to imagine this. When you're reading a story on the web or blog, you are given two choices. You can choose the next story based on your own choice. After selecting then you can continue reading the story. Shortly afterwards you will be presented back to the 2 other options. The next choice is up to you. Then you continue the story you are reading. After that you will be faced again with 2 choices. So onwards.
If you feel curious then you can re-read the story by changing your selection. Then you will see a different story with the story that you have read previously. The question now is why is this so? Because the storyline will be varying according to your choice.
Based on the above, then you are faced with two choices. Are you interested in reading my story is? Or you are not interested at all. The choice is in your hands.
If you are interested then spread widely disseminated this article to your family, friends, neighbors, and relatives. You can also distribute it on facebook, twitter, goggle +, or other social media that this article be viral in the world. By doing so it is a new entertainment industry has been created.
Its creator named Richard Nata.
The full articles that talks about this:
19. Start-up strategy in order to earn millions to tens of millions of dollars annually. http://richardnata.blogspot.com/2015/02/start-up-strategy-in-order-to-earn.html
20. Why do I need startup funds from investors? http://richardnata.blogspot.com/2015/05/why-do-i-need-startup-funds-from.html
21. slow but sure vs acceleration. http://richardnata.blogspot.com/2015/05/slow-but-sure-vs-acceleration.html
20. Why do I need startup funds from investors? http://richardnata.blogspot.com/2015/05/why-do-i-need-startup-funds-from.html
21. slow but sure vs acceleration. http://richardnata.blogspot.com/2015/05/slow-but-sure-vs-acceleration.html
Are you interested in my offer?
Do you want to be an investor in my startup?
If yes, don't hesitate to contact me as soon as possible.
If yes, don't hesitate to contact me as soon as possible.
Thank you.
P.S. The offer letter I gave also to the hedge funds and venture capital and other major companies in the entire world. So who is fast then he will get it.
P.P.S. If you are not interested in my offer, it is a good idea to periodically review my blog to see the development of my blog. http://richardnata.blogspot.com
If I've made a story on my blog and get a multiplication of clicks then you should know that the readers liked my story
Thank you.
P.S. The offer letter I gave also to the hedge funds and venture capital and other major companies in the entire world. So who is fast then he will get it.
P.P.S. If you are not interested in my offer, it is a good idea to periodically review my blog to see the development of my blog. http://richardnata.blogspot.com
If I've made a story on my blog and get a multiplication of clicks then you should know that the readers liked my story
No comments:
Post a Comment