Membuat Slick Tab Jquerry dengan scroll bar

Tab view / slick tab jquerry digunakan untuk menyembunyikan widget 1 dengan yang agar terlihat rapi dan menghemat ruangan di halaman blog.
Dibawah ini merupakan contoh dari tab jquerry cara membuatnya ikuti langkah dibawah ini :


Jika takut gagal membuatnya save template agan dulu dengan mengklik download template lengkap, agar dapat di upload sewaktu - waktu.
Membuat Slick Tab Jquerry  dengan scroll bar

1. Login ke blogger pilih  Rancangan > Edit Html > Expand template widget
2. Cari kode ]]></b:skin> dan tempatkan kode dibawah ini tepat diatas kode ]]></b:skin>
#slick_area {
border:0px solid #585858;
background-color:#ffffff;
padding:8px;
margin:10px 0;
line-height:18px;
}
#slick_area a{
color:#ffffff;
text-decoration:none;
}
.slick_area a:hover{
color:#FF0000;
}
ul.slick {
margin:2px 5px 8px 0;
padding:0px;
}
ul.slick li {
list-style:none;
display:inline;
background-color:#ffffff;
padding:5px 14px;
text-decoration:none;
font-size:10px;
font-weight:bold;
text-transform:uppercase;
cursor:pointer;
border:0px solid #585858;
}
ul.slick li:hover {
color:#red;
}
ul.slick li.active {
background-color:#ffffff;
border:1px solid #585858;
color:#222222;

}
.content-slick {
background-color:#ffffff;
border:0px solid #585858;
color:#222222;
min-height:40px;
padding:7px 13px 5px;
text-align:left;
}
.content-slick ul {
margin:20px;
padding:0;
}
.content-slick ul li {
list-style:none;
border-bottom:1px solid #222222;
padding:1px;
}
.content-slick ul li:last-child {
border-bottom:none;
}
.content-slick ul li:hover, .content-slick ul li a:hover {
display:block;
background-color:#ffffff;
}
.content-slick ul li a {
text-decoration:none;
color:black;
display:block;
}
3. Lalu carilah kode </head> setelah ketemu letakkan kode dibawah ini tepat diatas kode </head>
<script language='javascript' src='https://sites.google.com/site/areacyberblog/areacyber/query.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){
$(&#39;#tabdua, #tabtiga&#39;).hide();
$(&quot;ul.slick li&quot;).click(function () {
$(&quot;.active&quot;).removeClass(&quot;active&quot;);
$(this).addClass(&quot;active&quot;);
$(&quot;.content-slick&quot;).slideUp();
var content_show = $(this).attr(&quot;title&quot;);
$(&quot;#&quot;+content_show).slideDown();
});
});
</script>
4. Save template
5. Kemudian masuk ke Rancangan > Edit Laman > Tambah Gadget > pilih Javascript/Html lalu masukkan kode dibawah ini
<ul class="slick">
<li title="tabsatu" class="slick active">Tab Satu</li>
<li title="tabdua" class="slick active">Tab Dua</li>
<li title="tabtiga" class="slick">Tab Tiga</li>
</ul>

<div id="tabsatu" class="content-slick">
Letakkan kode HTML/Javascript agan di Tab Satu
</div>

<div id="tabdua" class="content-slick">
Letakkan kode HTML/Javascript agan di Tab Dua
</div>

<div id="tabtiga" class="content-slick">
Letakkan kode HTML/Javascript agan di Tab Tiga
</div>
Selamat mencoba !!

Cara membuat daftar isi Jquerry dengan Mudah

Sebelumnya sudah pernah memberikan mengenai tutorial membuat daftar isi otomatis blogger. Sekarang saya menerangkan bagaimana membuat daftar isi jquerry seperti gambar dibawah ini :
Bagaimana ? Ingin mencobanya ?


Cara membuat daftar isi Jquerry dengan Mudah
  • Pertama login ke blogger agan lalu pilih Tab Rancangan > Edit Html > Expand template widget
  • Cari kode dibawah ini menggunakan Ctrl + F
]]></b:skin>
  • Lalu letakkan kode dibawah ini tepat di atas kode ]]></b:skin>
#dafis-acc{
font-family:"Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#333;
background:url(http://1.bp.blogspot.com/-Q0gQpqnpwdw/TggUQZh1y3I/AAAAAAAAANg/-9rHKcaz5JU/s320/bg5.gif) repeat-y scroll left center #E7F7FB;
padding:2px 0;
border:1px solid #339DC6;
}
.dafis-label{
background:url(http://2.bp.blogspot.com/-SlHI9wfcEy0/TggUQSS6hBI/AAAAAAAAANY/osNWdKWUfZQ/s1600/bg4.gif) repeat-x scroll 0 0 #E1F4FB;
font-weight:bold;
line-height:1.4em;
overflow:hidden;
white-space:nowrap;
vertical-align: baseline;
margin: 1px 3px;
outline: none;
cursor: pointer;
text-decoration: none;
padding: 2px 10px;
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,.3);
border:1px solid #2F94BA;
}
.dafis-label:hover{
background:url(http://3.bp.blogspot.com/-x7WFTrEvdnY/TggUQNCYIkI/AAAAAAAAANQ/i8ZH9H_K_bg/s320/bg2.gif) repeat-x scroll 0 0 #E1F4FB;
color:#003366;
}
.dafis-daf ol{
margin:0 0 0 30px !important;
padding:0 !important;
}
.dafis-daf ol li{
background-color:#C9E9F4;
line-height:1.5em;
margin:1px 3px !important;
white-space:nowrap;
text-align:left;
border:1px solid #339DC6;
}
.dafis-daf ol li a{
text-decoration: none !important;
color:#333 !important;
display:block;
padding-left:10px;
}
.dafis-daf ol li a:hover{
background: #7BC4DF;
border-left: 5px #333 solid;
padding-left: 5px;
text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
  • tahap berikutnya adalah Meletakkan kode dibawah ini diatas kode </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
  • Kemudian save templates
Cara terakhir yakni meletakkan daftar isi tadi sesuai keinginan agan. Caranya pada Rancangan > Edit Laman > Tambah Widget (bebas dimana saja yang kalian suka) > Javascript/Html > masukkan kode dibawah ini :

<script type="text/javascript" src="https://sites.google.com/site/areacyberblog/areacyber/querry.js"></script>
<script src="http://areacyber.blogspot.com/feeds/posts/summary?max-results=1000&amp;alt=json-in-script&amp;callback=loadtoc"></script>
Tulisan berwarna biru gantilah dengan url blog/web kalian dan max results=1000 jumlah artikel/posting yang akan ditampilkan.

Selamat mencoba !!

Daftar situs SEO terbaik untuk meningkatkan traffik

Seperti banyak dari agan tahu, search engine adalah sumber yang paling besar lalu lintas untuk hampir semua blog di web. Blog tanpa lalu lintas dari Google tidak akan pernah memiliki kesempatan untuk berbagi dengan dunia. Dalam rangka meningkatkan lalu lintas Anda, Anda harus mengoptimalkan blog agan sehingga Search Engine tertarik untuk itu. Yang juga dikenal sebagai SEO (Search Engine Optimization). Jadi di sini adalah daftar situs SEO terbaik yang berguna di mana agan dapat belajar bagaimana memanfaatkan kekuatan google kemudian dengan itu agan dapat meningkatkan traffik melalui daftar situs SEO.

 
Daftar situs search engine optimization terbaik :

Courtney Tuttle
Join Courtney's Internet Marketing School and you will definitely gain vital knowledge when it comes to search engine optimization.

The Keyword Academy
This is personally my favorite SEO site run by Courtney Tuttle and Mark Butler. You'll learn more in one of their posts than you will in 50 of Darren Rowse's Posts.

Grizzly's Online Blog
He's got some great strategies for making an income online along with useful SEO tips.

Search Engine Land
Search Engine Land is a hub for news and information about search engine marketing, optimization and how search engines work for searchers.

Daily Blog Tips
Improve your blog with Daily Blog Tips. A fast paced blog featuring articles on blog design, SEO, promotion, monetization and more

Matt Cutts: Gadgets, Google, and SEO
talk about Google, SEO, and Gadgets. But mostly Google.

SEOmoz
Search Engine Marketing News & Tips

Search Engine Journal

Pronet Advertising
Pronet Advertising is a weblog about Neil Patel's personal experiences in online marketing.

Search Engine Guide
The small business guide to search engine marketing. Articles from the top names in the industry cover topics including SEO, PPC, SEM, blogging, social media, adsense, adwords, Google, Yahoo, MSN and Internet marketing.

Online Marketing Blog
All about the intersection of search engine & social media marketing

Marketing Pilgrim
Andy Beal discusses news from the search engine industry, blogging, rss and other internet marketing.

Search Engine Watch
Search Engine Watch provides news and tips about search engine marketing (SEM), search engine optimization (SEO), and searching the Web. We offer daily news & analysis of the search industry, including the latest on Google, Yahoo, Microsoft and Ask.

Get Elastic
Ecommerce articles on internet retail, online marketing, social media, SEO, and killer ecommerce tips from Elastic Path Software; Featuring the Get Elastic ecommerce podcast - conversations with ecommerce industry insiders.

Web Analytics World
Manoj Jasra's insight on Web Analytics and the Search Marketing Industry. Also including Interviews, Technology Reviews and Podcasts

BlogStorm
Search engine optimization & internet marketing blog

Small Business SEM
Small Business SEM by Matt McGee | SEO and Marketing Discussion for Small Businesses

SEO Scoop
SEO Scoop is a popular search engine optimization blog that focuses on SEO tips, theories and news.

Search Engine Roundtable
Search engine optimization news and resources

As many of you know, Search Engines are the most substantial source of traffic for almost any blog on the web. The blogs without any traffic from Google will never have the chance to be shared with the world. In order to increase your traffic, you must optimize your blog so that Search Engines are attracted to it. Which is also known as SEO (Search Engine Optimization). So here is a list of useful SEO sites where you can learn how to harness the power of google.
 

Cara pasang widget cuaca di blog


Cara pasang widget cuaca di blog cukup mudah kita hanya tinggal menggunakan jasa layanan situs.
Kunjungi web nya disini
Salah satu widget unik di blog yakni widget cuaca atau weather widget lalu bagaimana cara pasang nya?


Langkah - langkahnya seperti gambar diatas , setelah mendapatkan kode html lalu copy paste dan masukkan ke Tambah widget pada blogger.

Selamat mencoba !!

Best Seo tips and tactics


SEO, or search engine optimization, is the most important thing to make money online. If you know the basic concept of seo, you can be confident to make money online by SEO. Here I am jotting down best Seo tips that I have learned from hands on SEO experience on SEO for online marketing and ...

1) Think where to write Seo tactics on articles? Answer is - blog, website or article submission websites. If you have a best blog or website, search engine optimization is important to promote your website through search engines by doing SEO. If you have a good search engine ranking, you can get more target traffic/visitor to your website and if you run Google adsense /adbrite/chitika or any other contexual ad providers, your earning potential will be increased by an increasing CTR (click through rate). If you have no website but you want to promote your affiliate product, then SEO for article marketing is important to you for your affiliate marketing. Figure out the right product for your affiliate marketing.

2) Now decide what topic you should choose. You need to research on various SEO trends, for best seo Google search volume on particular keyword, Google AdWord selector tool to select best paying and popular keywords and the most important tool is to use some best keyword selector tools like KEYWORD ELITE 2.0. You choose the best keywords with maximum volume of global search and good no. of advertiser competitions. Learn Why Keyword Elite 2.0 Will Allow You To Dominate The Competition

3) Now comes SEO content writing. Try to focus on the most important 3 keywords or key phrases that you have researched from KEYWORD ELITE2.0. Try to use these keywords meaningfully in your content title and use frequently in your content body. The content body should contain a SEO keyword density of 3-4%. So, if you write a 300 words article, it should contain 9-12 times repeatation of that particular keyword in your content. You have to maintain keyword proximity too. That means the most important keywords should be in a sequence and close to each other. It gives the content a SEO boost.

4) Now if you have a website, use title tag, meta description, meta tag optimization for good SEO and then paste the SEO content in website content area. The title should contain 3 keywords and meta description and title should be relevant to the content of the website. Try to put some unique keyphrases/combination of keywords to make your title different from the crowd. Your creativity along with the techniques I described is vital for a good SEO title. Then write a keyword rich meta description (meaningful)

You can use H1-H6 tags in your web page HTML to boost SEO. Also don't forget to put put alt text for images. If you have blogs try to put some good blogger hacks for better SEO

5) Put keyword rich anchor text in body of the content, that links to your other web pages. Cross linking with anchor text is a must for good SEO practice.

6) If you are writing articles put your signature line and affiliate links there. the rest of the SEO article writing is same as discussed above. Also using Mass Article Control Tool is a good choice to make money by article marketing

7) If you are using wordpress, then change your permalink structure to custom field /%postname%/ or anything else you would like that act as static HTML pages. Also use All in one SEO plugins and other best wordpress plugins for good SEO. The keyword research is sufficient if you use KEYWORD ELITE2.0. It will save your time and effort to make you decide what niche you should choose to work and to make money online. Don't forget to upgrade your wordpress to latest version.

8) Now comes promotion of your content by SEO. Do link exchange with other good relevant sites. Give links to other authority sites like Google, yahoo, wikipedia from your site. Do social media marketing and social bookmarking in Digg, Stumbleupon, Reddit, Twitter, Facebook, Propeller, Yahoo Buzz, Simpy, Mixx, Netvine, Mybloglog, Technorati, Blogcatalog, and Feedburner for the best SEO

9) Submit your article or sites to article directories, blog directories. Do rss submissions for best SEO.

10) Write free press releases and submit that also acts good to boost up your backlinks and thus SEO

11) Use SEO tools like SEO centro meta analyzer, keyword density checker, page rank checker, Google banned checker, Google webmaster central, domaintools to get your SEO score.

12) Always update your self what is happening in internet marketing and SEO industry. Read Google's Matt Cut's blog, problogger.net and search Google on different other SEO topics. Read 2 SEO Tips That I Bet You Really Didn't Know.

Hope you like these SEO tips that I have summed up here to give you a brief idea on SEO and online marketing tips to promote your website and to earn money.


Cara mudah membuat page number navigasi


Seperti itulah hasilnya membuat page number dengan cara mudah. Bagaimana apa agan-agan tertarik membuat page number navigasi seperti gambar diatas. Berikut ini cara mudahnya :
  • Login ke blogger agan > pilih Rancangan > Edit Html > Expand template widget
1. Carilah kode cara mudah dengan Ctrl+F
]]></b:skin> 
Selanjutnya letakkan kode dibawah ini tepat diatas kode  ]]></b:skin>
.showpageArea a {
text-decoration:underline;
}
.showpageNum a {
text-decoration:none;
border: 1px solid #cccccc;
margin:0 3px;
padding:3px;
}
.showpageNum a:hover {
border: 1px solid #cccccc;
background-color:#cccccc;
}
.showpagePoint {
color:#333;
text-decoration:none;
border: 1px solid #cccccc;
background: #cccccc;
margin:0 3px;
padding:3px;
}
.showpageOf {
text-decoration:none;
padding:3px;
margin: 0 3px 0 0;
}
.showpage a {
text-decoration:none;
border: 1px solid #cccccc;
padding:3px;
}
.showpage a:hover {
text-decoration:none;
}
.showpageNum a:link,.showpage a:link {
text-decoration:none;
color:#333333;
}
2. Lalu cari lah kode
</body>
Selanjutnya letakkan kode dibawah ini tepat diatas kode </body>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<script type='text/javascript'>
var pageCount=5;
var displayPageNum=5;
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;
</script>
<script src='http://blogergadgets.googlecode.com/files/blogger-page-navi.v1.js' type='text/javascript'/>
</b:if>
3. Langkah terakhir carilah kode
'data:label.url'
Jika sudah ketemu hapus kode tersebut dan gantilah dengan kode di bawah ini :
'data:label.url + &quot;?&amp;max-results=5&quot;'
Selamat mencoba !!
 
© Copyright 2010-2011 Areacyber | Tutorial blogger | Seo All Rights Reserved.