Browsing "Older Posts"

Every web developer wants to increase their website visitors because that is the main factor. There are a variety of ways to increase visitor. These I have to find some simple and accurate way. If you can work according to these tips properly, you can be sure to get huge visitor. It also help's when you will work with blogging. Below I share the tips, read carefully.

Website Visitor Resources:

1) Correctly create your sitemap.xml and robots.txt file. That's most most important for your website.

2) After creating your website completely, submit it to various search engines like Google, Yahoo, Bing so that search crawl bar easily find your posts.

3) Regularly write unique articles on your blog. Remember tutorials/posts that are standardized and large, do not let the bed and incorrect information.

4) Share your blog and blog posts to different social media site. The traffic to these websites will be appear in your blog by clicking the link.

5) Submit your blog posts to social bookmarking site. That's helped you to get huge visitor and also give you facility to increasing your website rank.
6) Add your blog's RSS feed. It also help's to growth your site visitors.

7) You can increase your website visitor through Yahoo Answer Site.

8) Don't ever work with Black SEO. That's harmful for your site.

9) Open new Facebook fan page for your website and all time published your blog posts there.

10) Try as much as possible on your blog site with CMS. Currently world most popular CMS is Joomla and WordPress.

If you can do well by following the above tips, 100% surely would be increase your website visitor and also it keep's good effect on SEO. Are you want to share other tips? ..comment..
Tags:

10 Important SEO Tips to Increase Your Website Visitors

By Unknown → Thursday, 25 July 2013
Today I picked up 12 stylish beautiful search box for your blogger/blogspot site. I hope you'll love. All search box created by using CSS3 and HTML. You can easily customize as your own. So let's get started.

How to Add:
Login>Blogger Dashboard>Layout>Add a Gadget>HTML/Javascript.

Then choose one of the search box, copy search box code and paste into your HTML/Javascript box.

Search Box Code:

1) Clean Search Box:
clean blogger search box
    <style>
#nbc-searchsimplebox1
{
padding:10px;
}
#nbc-searchsimplesubmit1
{
border:1px solid orange;
background: orange;
padding:5px;
color:#ffffff;
font:14px verdana;
}
#nbc-searchsimpleinput1
{
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #dcdcdc;
background:#ffffff;
padding:5px;
color:#888888;
font:14px verdana;
}
</style>
<div id='nbc-searchsimple1'>
         <form expr:action='/search/max-results=8'  method='get' id="nbc-searchsimplebox1">
            <input name='q' id='nbc-searchsimpleinput1' onblur='if (this.value == "") {this.value = "Search this site...";}' onfocus='if (this.value == "Search this site...") {this.value = ""}' type='text' value='Search this site...'/>
            <input id='nbc-searchsimplesubmit1' type='submit' value='Search'/>
         </form>
      </div>
2) Dynamic width (Expandable) Search box:
Generally:
dynamic blogger search box
After mouse hover effect:
dynamic blogger search
<style>
#nbc-searchexpandbox1
{
padding:10px;
}
#nbc-searchexpandsubmit1
{
border:1px solid #111111;
background: #111111;
padding:5px;
color:#ffffff;
font:14px verdana;
}
#nbc-searchexpandinput1
{
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #dcdcdc;
background:#ffffff;
padding:5px;
color:#888888;
font:14px verdana;
transition: width 2s;
-webkit-transition: width 2s; /* Safari */
-o-transition: width 2s; /* Opera*/
-moz-transition: width 2s; /* firefox*/
width:65px;
}
#nbc-searchexpandinput1:hover
{
width:200px;
}
</style>
<div id='nbc-searchexpand1'>
         <form expr:action='/search/max-results=8'  method='get' id="nbc-searchexpandbox1">
            <input name='q' id='nbc-searchexpandinput1' onblur='if (this.value == "") {this.value = "Search this site...";}' onfocus='if (this.value == "Search this site...") {this.value = ""}' type='text' value='Search this site...'/>
            <input id='nbc-searchexpandsubmit1' type='submit' value='Search'/>
         </form>
      </div>
3) Elegant green Search box:
elegant green blogger search
<style>
#nbc-searchgreen1
{
background: rgb(143,196,0); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(143,196,0,1) 0%, rgba(143,196,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(143,196,0,1)), color-stop(100%,rgba(143,196,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(143,196,0,1) 0%,rgba(143,196,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(143,196,0,1) 0%,rgba(143,196,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(143,196,0,1) 0%,rgba(143,196,0,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(143,196,0,1) 0%,rgba(143,196,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fc400', endColorstr='#8fc400',GradientType=0 ); /* IE6-9 */
border-radius:10px;
width:290px;
}
#nbc-searchgreenbox1
{
padding:10px;
}
#nbc-searchgreensubmit1
{
border:1px solid green;
background: green;
padding:5px;
color:#ffffff;
font:14px verdana;
}
#nbc-searchgreeninput1
{
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #ffffff;
background:#ffffff;
padding:5px;
color:#888888;
font:14px verdana;
}
</style>
<div id='nbc-searchgreen1'>
         <form expr:action='/search/max-results=8'  method='get' id="nbc-searchgreenbox1">
            <input name='q' id='nbc-searchgreeninput1' onblur='if (this.value == "") {this.value = "Search this site...";}' onfocus='if (this.value == "Search this site...") {this.value = ""}' type='text' value='Search this site...'/>
            <input id='nbc-searchgreensubmit1' type='submit' value='Search'/>
         </form>
      </div>
4) Easy blue Search box:
easy blue blogger search box
<style>
#nbc-searchblue1
{
background: rgb(37,141,200); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(37,141,200,1) 0%, rgba(37,141,200,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(37,141,200,1)), color-stop(100%,rgba(37,141,200,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#258dc8', endColorstr='#258dc8',GradientType=0 ); /* IE6-9 */
border-radius:10px;
width:290px;
}
#nbc-searchbluebox1
{
padding:10px;
}
#nbc-searchbluesubmit1
{
border:1px solid orange;
background: orange;
padding:5px;
color:#ffffff;
font:14px verdana;
}
#nbc-searchblueinput1
{
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #ffffff;
background:#ffffff;
padding:5px;
color:#888888;
font:14px verdana;
}
</style>
<div id='nbc-searchblue1'>
         <form expr:action='/search/max-results=8'  method='get' id="nbc-searchbluebox1">
            <input name='q' id='wc-searchblueinput1' onblur='if (this.value == "") {this.value = "Search this site...";}' onfocus='if (this.value == "Search this site...") {this.value = ""}' type='text' value='Search this site...'/>
            <input id='nbc-searchbluesubmit1' type='submit' value='Search'/>
         </form>
      </div>
5) Dark black Search box:
Dark black blogger Search box
<style>
#nbc-searchblack1
{
background: #222222;
border-radius:10px;
width:290px;
}
#nbc-searchblackbox1
{
padding:10px;
}
#nbc-searchblacksubmit1
{
border:1px solid #222222;
background: #dc4523;
padding:5px;
color:#ffffff;
font:14px verdana;
}
#nbc-searchblackinput1
{
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #ffffff;
background:#ffffff;
padding:5px;
color:#888888;
font:14px verdana;
}
</style>
<div id='nbc-searchblack1'>
         <form expr:action='/search/max-results=8'  method='get' id="nbc-searchblackbox1">
            <input name='q' id='nbc-searchblackinput1' onblur='if (this.value == "") {this.value = "Search this site...";}' onfocus='if (this.value == "Search this site...") {this.value = ""}' type='text' value='Search this site...'/>
            <input id='nbc-searchblacksubmit1' type='submit' value='Search'/>
         </form>
      </div>
6) White color Search box:
White color blogger Search box
<style>
#MBBOldSearch {
display: block;
clear: both;
margin: 10px 0;
}
#MBBOldSearch #MBBSinput {
background: url("<a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9NBWM5Bg5t5MoKT1Q0W6ypNdxgW-MbHscivflZog8QwRfv6yTIHZTObVgmB4ToMd5yxoypA4DLVAosWr6oj9NJw7Cq9kwZZSooI-Fpt2N9lMmmeHibBbyeTE4ozlyqjV63_r4Ms6Wz00/s1600/noxdo_blogspot_com_Search-icon.png&quot" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbXcu7mXgkPCPMylQONxsL41K8ogbzhkzV7VUOPFHk5Uvhtn8MAobLzuwz8c9wW-Sy5so8lt_xPfqCpqId3TJx0MVm1uJBeQAuKS3eaV8SHPqWqdJEqq9F5_91LpK1oVmRRrGffz2g-ag/s1600/noxdo_blogspot_com_Search-icon1.png&quot']);" rel="nofollow">https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPEj0jx8qln_MOockIpV14jPLYSXB8EuffFF2GbazHAxtL46a-CPVagg__WZyH8QQOyyd-4x-UwREjWpbYAm0MMLYCYQ2Os9i_nD9Gy8JkOWEP3OUHCE5F0pxjbMS6yqVtjV0HDiJwZHCR/s20/Search-icon.png&quot</a>;) no-repeat scroll 8px center transparent !important;
padding: 7px 15px 7px 35px !important;
color: #444;
font-weight: bold;
text-decoration: none;
border: 1px solid #D3D3D3 !important;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 1px 1px 2px #CCC inset;
-moz-box-shadow: 1px 1px 2px #CCC inset;
box-shadow: 1px 1px 2px #CCC inset;
width: 52%;
}
#MBBOldSearch #MBBSsubmit {
color: #444;
font-weight: bold;
text-decoration: none;
padding: 6px 15px;
border: 1px solid #D3D3D3;
cursor: pointer;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background: #fbfbfb;
background: -moz-linear-gradient(top, #fbfbfb 0%, #f4f4f4 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfbfb), color-stop(100%,#f4f4f4));
background: -webkit-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
background: -o-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
background: -ms-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBFBFB', endColorstr='#F4F4F4',GradientType=0 );
background: linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
}
</style>
 <div id="MBBOldSearch">
    <form action="/search/max-results=8">
        <input name="q" id="MBBSinput" type="text" />
        <input value="Search" id="MBBSsubmit" type="submit" />
    </form>
</div>
7) Stylish floating Search box:
It's always show at the top of right.
<style type='text/css'>
/*<![CDATA[*/
#sbutton {
background: -moz-linear-gradient(center top , #4D90FE 0%, #4787ED 100%) repeat scroll 0pt 0pt transparent;background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4d90fe), color-stop(100%,#4787ed));
background: -webkit-linear-gradient(top, #4d90fe 0%,#4787ed 100%);
background: -o-linear-gradient(top, #4d90fe 0%,#4787ed 100%);
background: -ms-linear-gradient(top, #4d90fe 0%,#4787ed 100%);
background: linear-gradient(top, #4d90fe 0%,#4787ed 100%);background-color: #4d90fe;
border: 1px solid #3079ED;
border-radius: 2px 2px 2px 2px;
color: #FFFFFF;
height: 27px;
min-width: 76px;
padding: 0 21px;padding-bottom: 2px;
}
#sbutton:hover{    background-color: #357AE8;
background-image: -moz-linear-gradient(center top , #4D90FE, #357AE8);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4d90fe), color-stop(100%,#357ae8));
background: -webkit-linear-gradient(top, #4d90fe 0%,#357ae8 100%);
background: -o-linear-gradient(top, #4d90fe 0%,#357ae8 100%);
background: -ms-linear-gradient(top, #4d90fe 0%,#357ae8 100%);
background: linear-gradient(top, #4d90fe 0%,#357ae8 100%);
border: 1px solid #2F5BB7;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);}
#simg {
background: url("<a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVZdGZef03euieUsqIDf-GEeA2tVN-QoTzBSR6yRXTaZNvYTMuMzWgKPeIC1lxIV66HowwCFqbuI6pkUCMe0KUVEPKhpfZUNCwOSEThCG7wAg-ydDlYbBB-2LyJTZr78iEk1FdcgoblFc/s1600/noxdo_blogspot_com_Search-icon2.png&quot" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVZdGZef03euieUsqIDf-GEeA2tVN-QoTzBSR6yRXTaZNvYTMuMzWgKPeIC1lxIV66HowwCFqbuI6pkUCMe0KUVEPKhpfZUNCwOSEThCG7wAg-ydDlYbBB-2LyJTZr78iEk1FdcgoblFc/s1600/noxdo_blogspot_com_Search-icon2.png&quot']);" rel="nofollow">https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPfkcrexEAUUMbtpKPW6t3DSFMM74oM-FdqC7e0emSZi3U4sQhDEYmf0lw0tgjJOH0Hi9etFJqN6XWt0jn4dPTp3ZCHkqxTSrFFkD7OzjerlO5if4pELgROBV0X6pNakamGhK3i-_KDPzc/s1600/searchicon.png&quot</a>;) no-repeat scroll 0 0 transparent;
display: inline-block;
height: 14px;
margin: 0;
width: 17px;z-index:101;
}#s:hover {box-shadow: 0 1px 2px #C1C1C1 inset;}
#s {border: 1px solid #BCBCBC;border-radius: 4px 4px 4px 4px;font: italic 14px times New Roman;padding: 4px 2px;width: 146px; -moz-transition: width 0.2s ease-in 0s; -webkit-transition: width 0.2s ease-in; -o-transition: width 0.2s ease-in;}
#s:focus {width: 200px;}
.noop-searchbox {
display: block;
position: fixed;
right: 12px;
top: 1%;
max-width: 300px;min-width: 238px;
z-index: 100;
}
/*]]>*/
</style>
<div class='noop-searchbox' id='noop-searchbox'>
<form action='/search/max-results=8' id='noop-searchform' method='get'>
<input id='s' name='q' onblur='if (this.value == "") {this.value = "Search...";}' onfocus='if (this.value == "Search...") {this.value = ""}' type='text' value='Search...'/>
<button id='sbutton' type='submit'><span id='simg'></span></button>
</form></div>
8) Round corner Search box:
Round corner blogger Search box
<style>
#search-form {
background: #e1e1e1; /* Fallback color for non-css3 browsers */
width: 365px;
background: -webkit-gradient( linear,left top, left bottom, color-stop(0, rgb(243,243,243)), color-stop(1, rgb(225,225,225)));
background: -moz-linear-gradient( center top, rgb(243,243,243) 0%, rgb(225,225,225) 100%);
border-radius: 17px; -webkit-border-radius: 17px; -moz-border-radius: 17px;
box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3); }
input[type="text"]{
background: #fafafa;
background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(250,250,250)), color-stop(1, rgb(230,230,230)));
background: -moz-linear-gradient( center top, rgb(250,250,250) 0%, rgb(230,230,230) 100%);
border: 0; border-bottom: 1px solid #fff;
border-right: 1px solid rgba(255,255,255,.8);
font-size: 16px; margin: 4px; padding: 5px; width: 250px;
border-radius: 17px; -webkit-border-radius: 17px; -moz-border-radius: 17px;
box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
-webkit-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
-moz-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2); }
input[type="text"]:focus{outline: none; background: #fff;
background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(235,235,235)));
background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(235,235,235) 100%); }
input[type="submit"]{
background: #44921f;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(79,188,32)), color-stop(0.15, rgb(73,157,34)), color-stop(0.88, rgb(62,135,28)), color-stop(1, rgb(49,114,21)));
background: -moz-linear-gradient( center top, rgb(79,188,32) 0%, rgb(73,157,34) 15%, rgb(62,135,28) 88%, rgb(49,114,21) 100%);
border: 0; color: #eee; cursor: pointer;
float: right; font: 16px Arial, Helvetica, sans-serif; font-weight: bold; height: 30px;
margin: 4px 4px 0; text-shadow: 0 -1px 0 rgba(0,0,0,.3); width: 84px; outline: none;
border-radius: 30px; -webkit-border-radius: 30px; -moz-border-radius: 30px;
box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
-moz-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4); }
input[type="submit"]:hover {
background: #4ea923;background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22)));
background: -moz-linear-gradient( center top, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%); }
input[type="submit"]:active {
background: #4ea923;background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22))); background: -moz-linear-gradient( center bottom, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%); }
</style>
<form action="/search/max-results=8" id="searchbox">
<input name="cx" type="hidden" value="X:Y" />
<input name="cof" type="hidden" value="FORID:11" />
<input id="q" name="q" size="70" type="text" />
<input name="sa" type="submit" value="Search" />
</form>
9) Black and white color Search box:
Black and white color blogger Search box
<style type="text/css">
#nbc-searchbox{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg53L2k091jds8gj9UBf1JNYTzswwIzojwi-b_lo23mIBxcQG3fbfaXataOCE1HFwFVc54N1ATCws7ZAs61I8zic2uqMKdtBYz2-CwxKIzWO28LMZHlzKfICBo_IPIuWrB-hZr4Jvn7hKE/s1600/noxdo_blogspot_com_Search-icon3.png) no-repeat scroll center center transparent;width:307px;height:50px;disaply:block;}
form#nbc-searchform{display: block;padding: 10px 12px;margin:0;}
form#nbc-searchform #s{padding: 6px;margin:0;width: 235px;font-size:14px;vertical-align: top;border:none;background:transparent;}
form#nbc-searchform #sbutton{margin:0;padding:0;height:30px;width:30px;vertical-align: top;border:none;background:transparent;}
</style>
<div id="nbc-searchbox">
<form id="nbc-searchform" action="/search/max-results=8" method="get">
    <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}' onblur='if (this.value == "") {this.value = "Search...";}'/>
</form>
</div>
10) White Search box:
White blogger Search box
<style type="text/css">
#nbc-searchbox{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKJqRzqFkun0y5xVgU07fBw04VajS4vchfwY0V6dJz2_YOcRF-8X8DlI-9dWbkvHyxPHjk1cisq2CdZiZ83JV3QKQTjbp3Vd7Vp12q68Rh4eeGbLQpj2VOLw2AHpXO-Q80KnxAhTVx5cg/s1600/noxdo_blogspot_com_Search-icon4.png) no-repeat scroll center center transparent;width:307px;height:50px;disaply:block;}
form#nbc-searchform{display: block;padding: 12px;margin:0;}
form#nbc-searchform #s{padding: 6px 6px 6px 26px;margin:0;width: 215px;font-size:14px;vertical-align: top;border:none;background:transparent;}
form#nbc-searchform #sbutton{margin:0;padding:0;height:30px;width:30px;vertical-align: top;border:none;background:transparent;}
</style>
<div id="nbc-searchbox">
<form id="nbc-searchform" action="/search/max-results=8" method="get">
    <input type="text" id="s" name="q" value=""/>
</form>
</div>
11) Grew color Search box:
Grew color blogger Search box
<style type="text/css">
#nbc-searchbox{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-iopHcfw_8TyU5-_cPLVoeOUdhdFoK_mX9YLKVtxDyv_crs97M9PrY16uq-RgzgaTw58hsw1U1xd16Ke1CyjQLz03fyejhcddtPw5AoydnIJD0KHenLbBpXgT1rZzOSPk23ZmtRmrdRM/s1600/noxdo_blogspot_com_Search-icon5.png) no-repeat scroll center center transparent;width:307px;height:50px;disaply:block;}
form#nbc-searchform{display: block;padding: 12px;margin:0;}
form#nbc-searchform #s{padding: 6px 6px 6px 26px;margin:0;width: 215px;font-size:14px;vertical-align: top;border:none;background:transparent;}
form#nbc-searchform #sbutton{margin:0;padding:0;height:30px;width:30px;vertical-align: top;border:none;background:transparent;}
</style>
<div id="nbc-searchbox">
<form id="nbc-searchform" action="/search/max-results=8" method="get">
    <input type="text" id="s" name="q" value=""/>
</form>
</div>
12) Red color Search box:
Red color blogger Search box
<style type="text/css">
#nbc-searchbox{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgeejWFPWyzxoyR4wD2G3jB_fp5LYRLW59x7PChngklNb1Hh5ebT3InGTEEbI6wJw7PidXjdpKppgCE_BM9utAfAkjPb6tVY3XJOdJFQEd4FPSXvzGxwzjZUESVPvMCsmGJKas4EQA8wgw/s1600/noxdo_blogspot_com_Search-icon6.png) no-repeat scroll center center transparent;width:307px;height:50px;disaply:block;}
form#nbc-searchform{display: block;padding: 10px 12px;margin:0;}
form#nbc-searchform #s{padding: 6px;margin:0;width: 235px;font-size:14px;vertical-align: top;border:none;background:transparent;}
form#nbc-searchform #sbutton{margin:0;padding:0;height:30px;width:30px;vertical-align: top;border:none;background:transparent;}
</style>
<div id="nbc-searchbox">
<form id="nbc-searchform" action="/search/max-results=8" method="get">
    <input type="text" id="s" name="q" value="Search..." onfocus='if (this.value == "Search...") {this.value = ""}' onblur='if (this.value == "") {this.value = "Search...";}'/>
</form>
</div>
Post: You can also view..
        Jquery Stylish Featured Post Slideshow for Blogger

12 Stylish Beautiful Blogger/Blogspot Search Box

By Unknown → Tuesday, 23 July 2013
Everybody we know that opera is the best browser for a mobile device. I will share some tips that's would be increase your opera browser speed more. You can follow this tips to increasing your browser. Just follow the instruction..

Step-1: First Open your opera browser.
step-2: In opera address bar type opera:config then press ok.
Step-3: Now you show different section. All section fill up according to following tips...

<>large placeholders for images=NO
<>Fit text to screen=Yes
<>Loading timeout=reduce to 10/20 seconds as the case maybe.
<>Site patches and user-agent masking=NO
<>Keep styling in RSS feeds=NO
<>Show feed index=NO
<>Fold linklists=NO
<>Phone number detection=Yes/No(your choice)
<>Minimum phone number length=no need to edit.
<>Use bitmap font=No

Done, Now save it and enjoy more speed with opera mini.
Tags:

How to increase 100% Opera Mobile Browser speed

By Unknown →
We are use many type of software in our windows operating system computer. After you install some of the software, you show the msvcr100.dll missing. I also face this problem after installing a game. I've got a solution to this problem by a small software. I hope you will find. First click below to download the software. After downloading, install dffsetup.exe file.

Download [5.2 MB]

Now Follow the Step:
1. After installing, then click on Install DLL Files.
2. In the empty box, enter the name of your dll file.
3. Click on Search DLL-Files icon.
4. If your file show click on this.
Then automatically the file will become download and install.
Now it's Complete. Enjoy your software.
Tags:

Solve your msvcr100.dll missing File Problem

By Unknown → Friday, 19 July 2013
There's a lot of secret code for android phone which we don't know. By using this code, you can change the settings of your Android phone. Let's look some of the important Android code.

*#06# = IMEI number will be displayed.
*2767*3855# = Reset Phone factory.
*#*#4636#*#* = Phone and Battery information.
*#*#273282*255*663282*#*#* = All media file back-up code.
*#*#197328640#*#* = Service setting reset code.
*#*#1111#*#* = FTA software version.
*#*#1234#*#* = PDA and firmware version.
*#*#232339#*#* = Wireless LAN test code.
*#*#0842#*#* = Backlight and vibration test code.
*#12580*369# = Software and Hardware information. 
*#*#2664#*#* = Touch screen test code. 
*#9900# = System Dump Mode. 
*#9090# = Diagnostic Configuration.
*#*#34971539#*#* = Camera Information.
*#872564# = USB Login Control.
*#301279# = HSDPA/HSUPA Control Menu.
*#7465625# = Phone lock status.
*#*#7780#*#* = Factory restore settings. The system will delete all data.
*2767*3855# = Factory format setting. All internal and external data can be deleted and firmware will be re-installed.
*#*#273283*255*663282*#*#*= File copy screen. All image, sound, video, voice memo can be backed up.
*#*#197328640#*#* = Service mode code. Different test and setting can be changed.
*#*#7594#*#* = Your end-call/power-button is becoming a direct power off button.
*#*#8255#*#* = G-talk service monitor code.
*#*#34971539#*#* = Camera information. The camera firmware update version do not use, because it will be closed of your camera function.
 
W-LAN, GPS and Bluetooth Test Codes:

*#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#*= W-LAN test code. Use the menu button to start test.
*#*#232338#*#* = WiFi Mac Address.
*#*#1472365#*#* = GPS Test.
*#*#1575#*#* = Another GPS Test Code.
*#*#232331#*#* = Bluetooth Test Code.
*#*#232337#*# = Bluetooth devices information.
*#*#0588#*#* = Proximity Sensor Test.
*#*#0*#*#* = LCD Test.
*#*#2663#*#* = Touch Screen Version.
*#*#0283#*#* = Packet Loop Back.
*#*#0673#*#* OR *#*#0289#*#* = Melody Test.
*#*#3264#*#* = RAM Version Test.

All Important Android Secret Code

By Unknown → Thursday, 18 July 2013
Today I am sharing some of the most important SEO website which helps you to get recent SEO updates news. The internet is a vast sea, there is information available to the public and anyone can retrieve it. But the problem is, this is very difficult to find the right information from the sea and also there is a lot of harmful information that's may be damaging your site ranking.

SEO is actually a subject where you always have to be updated and you will find out new updates about the search engines and will act accordingly. Today I will share with you some of the reliable site. Because here work world-renowned SEO specialist. Let's start our important journey.

The first and most important guideline you get from google's so you may want to visit: http://www.google.com/webmasters/ . After visiting this site, you can visit Webmaster Resources option. From here you can see Guideline, Help, Blog, YouTube. Besides you can follow Google webmaster guideline that's always true guideline for your website.

Secondly you can see Bing's Webmaster Blog.

You can see Google's Matt Cutts's Blog and youtube channel.

You can also follow most popular and reliable seomoz website. Here you also find new google update news and SEO tricks.

You can also follow http://www.seobook.com/ website. Here you find some beautiful beginner label tutorial.

http://outspokenmedia.com/blog - The article text quality is very good. Here you can pick up tricks about an article written.

http://linkspiel.com/ - If you just want to learn link building, you can see this website.

http://www.kaushik.net/avinash -If you want to know about Web Analytics, you can see.
Important: We are also trying to publish recent news.
               Thanks Everybody.
Tags:

Some Most Popular UPDATED SEO Website

By Unknown → Sunday, 7 July 2013
Mozilla Firefox is a populated name in the worldwide. Many computer users used Mozilla Firefox to complete their task. This browser is the most popular for all operating systems like Linux,Windows,Mac. Last 2 April 2013, Firefox released new version Firefox 20.0. Let's see, what's facility in Mozilla Firefox 20.0.
  • Advanced Private Browsing
Private browsing is a big advantage of Firefox's. Because when we use private browsing, Firefox not saving our browsing, history, cookies, cache.
In the previous version of Firefox when you are running window click on start private browsing, your previous window close automatically and would be open a new window. But Firefox 20.0, you can open more private and non-private window together.

  • New Experience Of Download
The default Downloader for Firefox also been improved. In this version, Download icons have been added beside the search bar. When you click on this icon then would be opened a drop down menu and you would see download item and completed time.
  • Advanced Stability of Plugins
As a result using of different types of plugins, we are attracted by hanging and crash. But thankfully, Firefox 20.0 that's plugins could be occur hangs and crashes that can recognize them and automatically close without having to restart the browser.

  • Improved Support of HTML5
Firefox 20.0 helps us to enjoy HTML5 audio and video with high quality. Besides, the tag of "&lt;canvas&gt;" will also have to support in "blend modes".

  •  Improved Developer Tools
The new "profile tool" have been added for developers. Now web developer can perform more work to use it.

So, why late? Download Firefox 20 Click Here and enjoy your browsing experience.

New Facility of Mozilla Firefox 20.0

By Unknown → Friday, 5 July 2013
Mesothelioma Definition:
  1. A type of cancer caused by exposure to asbestos. This type of cancer is usually considered a tumor of the pleura and not a type of lung cancer.
  2. Cancer involving the pleura. (The lungs covering by the membranes).
  3. A cancer of the lining of the lungs, chest and stomach caused by inhalation of asbestos dust and fibers or asbestos exposure.
  4. A cancer of cells similar to those forming the lining of the lungs, the abdominal cavity, heart etc.
  5. A malignant tumor covering the lining of the lung and connected with asbestos exposure.
  6. Generally, A tumor affects the lining of the chest or abdomen.
  7. A malignant tumor of mesothelioma caused by the inhalation of asbestos.
  8. A tumor of the lining of the lungs. Mesothelioma is connected only to asbestos exposure.
  9. Mesothelioma is known as deadly condition, if not detected in time. However there is forms of mesothelioma that cannot be deadly and these ones are known as benign mesothelioma.
Tags:

What is Mesothelioma Definition?

By Unknown →