Search In Site

Showing posts with label Blogging Tricks. Show all posts
Showing posts with label Blogging Tricks. Show all posts

01 August, 2013

Copy from Right Click Disabled Blog or Websites

Copy-pasting some body else work is very common. Though, very few people actually give the credit link or mention about the source. Specially, in Blogging people copy each other content and increase plagiarism. Apart from all Auto-bloggging tool, most common form of copying a page is by selecting text > mouse right-click and copy the content. Though in WordPress, we can easily disable this by using disable right click WordPress plugin. Though according to me right click gives a bad user experience and for Bloggers, you can always fight such copy-paste blogger using Google DMCA.
Now for me, when I have to write a tutorial, I take information from the pages on Internet and give proper credentials with link in the post. Now, the problem which I have faced recently is many of these sites have right click disabled and it’s pain to copy from these sites normally. So, here I have compiled a series of possible ways to copy content from those pages. FYI, many websites disable CTRL +C options to ensure better security from hackers and malicious sites.

Method to copy text from Right click Disabled pages:
1.Most of the bloggers and webmasters uses JavaScript technique to disable right-click, to prevent scrapers sites from stealing their content.
Many times we often come to websites where we found contents useful like how-to , Guides and we copy it into worded or notepad. Generally we select some text and then right click to copy. But on Protected sites a message box appears saying “Right-Click on this site is disabled. Hold Ctrl key and click on link to open in new tab”
But there are numerous way through one can copy contents from Right Click protected sites

2.By disabling browser JavaScript in browser And Using Proxy
Disabling JavaScript in Browsers
In Chrome browser, you can quickly disable JavaScript by going to settings. See the screenshot for better explanation:
Goto Setting >> UnderHood Tab >> Content Settingsor enter chrome://settings/content
Then Select Do not allow any site to run JavaScript
Similarly if you are using Firefox, you can remove the tick from “Enable JavaScript” option.
Using Proxy
There are many proxy sites, which let you disable JS while browsing. All you need to use those proxy sites, which offer such features and you can quickly use right-click on click disabled sites.
If you have to copy the specific text content and you can take care of HTML tags, you can use browser view source options. All the major browser give an option to source of the page, which you can access directly using the format below or by right click. Since, right click is out of question here, we will simply open chrome browser and type: view-source: before the post URL Like
And find the paragraph or text you want to copy and then paste it into any text editor.
Well, using this trick ethically or unethically is in user hand but for a normal blogger like me and you, this tip will certainly help.

3.Visit that webpage.
Press Ctrl+S on your keyboard.
Save the webpage anywhere on your computer.
Now open the downloaded webpage. You can copy or you can do anything.

OR
If Not Work Then Save it And Rename As .docx
Open It With Ms-Word
Now Copy The Whole Text .

20 June, 2013

How To Create a Simple Search Engine In PHP


Before we actually make the search engine, we need to create a basic webpage that will have an input field where the user can enter his or her search query. I'm going to keep mine simple; feel free to make an elaborate one with lots of bells and whistles. The code for my page is below:
<html> 
<head>
<title>Simple Search Engine version 1.0</title> 
</head> 
<body> 
<center> 
Enter the first, last, or middle name of the person you are looking for: <form action="search.php" method="post"> 
<input type="text" name="search_query" maxlength="25" size="15"><br> 
<input type="reset" name="reset" value="Reset"> 
<input type="text" name="submit" value="Submit"> 
</form> 
</center>
 </body>
 </html>


It's a pretty basic page so I'm not going to explain alot of it. Basically, the user will enter the first, middle, or last name of the person they are looking for and hit enter. The contents of the input field will be passed to a php script named “search.php” which will handle the rest.
Now that the page is out of the way, let's create the actual script. First, we need to connect to the database using mysql_pconnect() and select the table using mysql_select_db(). Next, we want to parse the value passed to the script to see if it contains any invalid input, such as numbers and funky characters like #&*^. You should always validate input, don't rely on things like JavaScript to do it for you, because once the user disables JavaScript all that fancy validation goes down the toilet. To check the input we are going to use a regular expression, they are a bit confusing and will be explained in a later tutorial. For now, all you need to know is that it will check to see if value passed is a string of characters. All right, enough chatter, here is the first part of the script:
<?php mysql_pconnect("host", "username", "password") or die("Can't connect!"); mysql_select_db("Names") or die("Can't select database!"); if (!eregi("[[:alpha:]]", $search_query)) { echo "Error: you have entered an invalid query, you can only use characters!<br>"; exit; }
Now that we've done that, we will form the search query.
$query= mysql_query("SELECT * FROM some_table WHERE First_Name= '$search_query' OR Middle_Name= '$search_query' OR Last_Name= '$search_query' ORDER BY Last_Name");
Look confusing? I'll explain, what's happening is, we're asking MySQL to search all the rows in First_Name, Middle_Name, and Last_Name for a match to the query entered by the user; then, take the results of that search, alphabetize the results by Last_Name.
The rest of the coding from now on is a breeze. We will get the results from the query using mysql_fetch_array( ), and check to see if there is a match using mysql_num_rows(). If there is a match, or matches, we will output it along with the number of matches found; if there isn't, we'll report to the user that we couldn't find anything.
$result= mysql_num_rows($query); if ($result == 0) { echo "Sorry, I couldn't find any user that matches your query ($search_query)"; exit; } else if ($result == 1) { echo "I've found <b>1</b> match!<br>"; } else { echo "I've found <b>$result</b> matches! <br>"; } while ($row= mysql_fetch_array($query)) { $first_name= $row["First_Name"]; $middle_name = $row["Middle_Name"]; $last_name = $row["Last_Name"]; echo "The first name of the user is: $first_name.<br>"; echo "The middle name of the user is: $middle_name.<br>"; echo "The last name of the user is: $last_name.<br>"; } ?>
I added that extra if statement so that when we report how many users we've found, its output will be in proper English. If I we don't, the script will echo "I've found 1 matches" which obviously isn't good grammar :P The rest of the script loops through the results and prints them to a webpage. That's all, we've finished the script! The entire script is included below:
<html> <head> <title>Simple Search Engine version 1.0 - Results </title> </head> <body> <?php mysql_pconnect("host", "username", "password") or die("Can't connect!"); mysql_select_db("Names") or die("Can't select database!"); if (!eregi("[[:alpha:]]", $search_query)) { echo "Error: you have entered an invalid query, you can only use characters!<br>"; exit; //No need to execute the rest of the script. } $query= mysql_query("SELECT * FROM some_table WHERE First_Name='$search_query' OR Middle_Name= '$search_query' OR Last_Name='$search_query' ORDER BY Last_Name"); $result= mysql_numrows($query); if ($result == 0) { echo "Sorry, I couldn't find any user that matches your query ($search_query)"; exit; //No results found, why bother executing the rest of the script? } else if ($result == 1) { echo "I've found <b>1</b> match!<br>"; } else { echo "I've found <b>$result</b> matches!<br>"; } while ($row= mysql_fetch_array($query)) { $first_name= $row["First_Name"]; $middle_name = $row["Middle_Name"]; $last_name = $row["Last_Name"]; echo "The first name of the user is: $first_name.<br>"; echo "The middle name of the user is: $middle_name.<br>"; echo "The last name of the user is: $last_name. <br>"; } ?> </body> </html>

It's All Done !!!

17 June, 2013

How To Get Top Ranking For Website


The tutorial is all about getting your site listed on top in Search Engines i.e Search Engine Optimization
First thing you need to do is find the keywords you want to optimize for.
There is great tool by Overture (/http://inventory.overture.com/d/sea...ory/suggestion/)
But I would suggest using this free tool called GoodKeywords (/http://www.goodkeywords.com/products/gkw/)
This one does the same job as Overture does but it also supports other Search Engines (Lycos and Teoma etc..)
For example if you want to optimize for the keyword "tech news", just search for the keyword in any of the tools specified above... It would show you keywords related to that and not of the searches..
Pick the keywords which are related to your site.
For example when you search for "Tech News" you'll see the following results:
Count Search Term
11770 tech news
351 itt news tech
191 high tech news
60 news tech texas
49 computer tech news
42 bio news tech
34 in itt news tech
30 news tech virginia
29 asia news tech
25 hi tech news
25 sci tech news
Now see what other terms are related to your keyword technology news
Do couple of searches like that and note down around 15-20 keywords.
Then, keep the keywords which are searched most on the top.
Now you need Title Tag for the page.
Title tag should include top 3 keywords, like for "tech news" it can be like :
"Latest Tech News, Information Technology News and Other computer raleted news here."
Remember that characters should not be more than 95 and should not have more than 3 "," commas - some search engines might cosider more than 3 commas as spam
Now move on to Meta Tags
You need following Meta Tags in web page
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="keywords" content="keyword1,keyword2,keyword3">
<META name="description" content="brief description about the site">
<META name="robots" Content="Index,Follow">
No need to have other meta tags like abstract, re-visit and all, most people dont read it.
Now...
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
This tag is tells content type is html and character set used it iso-8859-1 there are other character sets also but this is the one mosty used..
<META name="keywords" content="keyword1,keyword2,keyword3">
This one should have all your keywords inside starting from keyword with most counts...
keyword tag for our example would be something like :
<META name="keywords" content="tech news,technology news, computer technology news,information technology,software news">
Remember to put around 15-20 keywords max not more than that. Dont repeat keywords or dont put keywords like, "tech news", "info tech news", "latest tech news" and so on...
<META name="description" content="brief description about the site">
Provide short decription about your site and include all the keywords mentioned in the title tag.
Decription tag should be:
<META name="description" content="One Stop for Latest Tech News, Information Technology News, Computer Related and Software news.">
It can be upto 255 characters and avoid using more than 3 "," commas
<META name="robots" Content="Index,Follow">
This is used for search robots..following explanation will help you :
index,follow = index the page as well as follow the links
noindex,follow = dont index the page but follow the links
index,nofollow = index the page but dont follow the links
noindex,nofollow = dont index page, dont follow the links
all = same as index,follow
none = same as noindex,nofollow
Now move on to body part of the page
Include all top 3 keywords here,
I would suggest to break the keyword and use it...
For example
YourSiteName.com one stop for all kind of Latest Tech News and Computer Related information and reviews.................
Include main keywords in <h#> tags <h1><h2> etc..
and start with <h1> and then move to <h2> <h3> etc..
<h1> tag will be too big but CSS can help you there, define small font size in css for H1,H2,... tags
When done with page copy, then you need to provide title and alt tags for images and links.
Use some keywords in the tags but dont add all the keywords and if not neccessary then dont use keywords in it, basically it should explain what is image all about.
Remember to add Top keyword atleast 4 times in the body and other 2 keywords thrice and twice respectively.
Now move on to Footer Part
Try to include top keywords here and see the effect, use site keywords as links i.e.
<a href="news.php">Tech News</a> <a href="software-news.php">Software News</a> etc..
Now finally, you need to read some more stuff..may be you can all it as bottom lines...
Site Map - This is page where you need to put all the links present in your site, this is will help Search Engines to find the links easily and also provide link for site map in footer, as search engines start scanning the page from bottom.
Robots.txt - This file contains address of directories which should not be scanned by search engines.. more info can be found here : /http://www.robotstxt.org/wc/exclusion.html search engines line google, yahoo ask for robots.txt file.
Valid HTML - Your code should have valid html and doc type, Its kind of diffucult to follow all the standards but you can atleast open and close all the tags properly, you can check your page's html online here : /http://validator.w3.org/ or you can use this free software called HTML Tidy : /http://tidy.sourceforge.net/
All done now, you just need to check your site with this script, its called SEO Doctor : /http://www.instantposition.com/seo_doctor.cfm
It'll show you the report of your site with solution.
Now, correct the errors and start submitting the site :
Start with google : /http://google.com/addurl.html
then yahoo : /http://submit.search.yahoo.com/free/request
then move to altavista,alltheweb and other search engies..
Also submit your site to direcories like /http://dmoz.org , /http://jayde.com etc...
Dmoz is must, as google, yahoo and may more search engines uses same directory
And remember, dont try to SPAM with keywords in these directories, dmoz is handled by Human Editors
Submitted the sites, but still i cant see you site on top?
Wait for sometime may be a month or so but keep an eye on your search term, use /http://GoogleAlert.com - this will show whenever google updates for your keywords, it will mail you the new results.
And also check whether your site is listed on google..
use this tool called Google Monitor, it can be downloaded for free from : /http://www.cleverstat.com/google-monitor.htm

10 June, 2013

How To Color Your Social Subscription Widget


Here’s another subscription widget that you would definitely like. By using CSS and HTML, it’s a lot easier for you to incorporate this RSS feed subscription box with social icons on your site. The guys at Bloggertrix show you how to add this blue color social subscription widget.

Follow these simple steps:
Login to Blogger > Blogger Dashboard
Select Layout
Add Gadget > HTML/Javascript
Paste this code below:

<style>
#sidebar-subscribe-box{width:300px;border:1px solid #aaa;border-radius:3px;padding:3px 0}
.sidebar-subscribe-box-wrapper{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUM2YumF1hAw-IhHpzVvuklRQymEZJDLLwRs7I-St0YxJChCQ8LcYYK7H3MNE7gF12RwbrZyc7uNFwCktacWnFFFRk4oRCa3Eeyc2sKZEM7Zpu4bFjvNlOvH9xJxlpggNBOuKEJx_aiGg/s1600/background.png) repeat scroll 0 0 #f7f7f7;color:#111;font-size:14px;line-height:20px;padding:1px 20px 10px;text-align:center;text-transform:uppercase}
.sidebar-subscribe-box-form{clear:both;display:block;margin:10px 0}form.sidebar-subscribe-box-form{clear:both;display:block;margin:10px 0 0;width:auto}
.sidebar-subscribe-box-email-field{-moz-border-radius:4px;-webkit-border-radius:4px;background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghLmrLtcforFSb31Vo8FWyBt652UStSiz82gzN2ltKZmUpBepH27B9d77v5-h96aJ2-6i1bCJ0SFwsFhYfp1tBcx_MMsEwgCpc-1NDM8jEchk2Lc8aFYbx2FRX3cYu73J_DOVaJPZBNIc/s1600/icons.png) no-repeat 0 -27px;border:1px solid #ccc;border-radius:4px;color:#444;margin:0 0 15px;padding:10px 40px;width:68%}
.sidebar-subscribe-box-email-button{background:#09f;border:1px solid #007fff;box-shadow:0 1px 0 rgba(255,255,255,0.3) inset, 0 1px 0 transparent;color:#fff;cursor:pointer;font-family:verdana;font-weight:700;padding:10px;text-shadow:1px 1px 0 rgba(0,0,0,.4);text-transform:uppercase;width:100%}
.sidebar-subscribe-box-email-button:hover,.sidebar-subscribe-box-email-button:focus{background:#1ca4ff}
.sidebar-subscribe-box-email-button:active{-moz-box-shadow:0 1px 4px rgba(0,0,0,0.5) inset;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.5) inset;box-shadow:0 1px 4px rgba(0,0,0,0.5) inset;outline:0}iframe,object,embed,.yt-border iframe,.yt-border object,.yt-border embed,table{width:100%}embed{border-radius:3px;-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);background:#FFF;border:1px solid #ddd;box-shadow:0 2px 4px rgba(0,0,0,0.2);margin:0;padding:4px 4px 4px}
#footer-section{border-top:1px solid #aaa;box-shadow:inset 0 4px 6px -3px #aaa;font-family:cambria;font-size:14px;height:100px;margin:10px -30px 5px;padding:0 30px;text-align:center;width:100%}
a.social-icons{margin-right: 5px;height:45px;width:45px;}
a.social-icons:hover { opacity: .7; filter:alpha(opacity=70);}
</style>

<div id="sidebar-subscribe-box">

<div>
<br/>
<a href="https://facebook.com/Ajyvrma"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOt27HJwSoLPTg8Bc7sGxl7_20O00gCDAuOQRALclWso4JTNax589tg7zDy5dU-eBEVqXLN2pxrUCFpKJTGjU-H09ZNO5MqJ8mZVizIQ_wlm28Rs_hIhRd0cKov-KcuMTSHQD77jb2B6D1/s1600/Bloggertrix-facebook.png" /></a>
<a href="https://twitter.com/Ajyvrma"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIrYyu7Nug2W1iWS2MkNNAQTm7QX6WkDkifa2Rg59hHHFVUqVZn2xmbWLlYlJZEnQutGwp1QaOMWs9Iac6MsrdL466nasGCKtAXVIrnWB3ar_wIyD6UxYiG08PavjxBdu0FHSLNfkMgcrY/s1600/bloggertrix-twitter.png" /></a>
<a href="https://plus.google.com/Ajyvrma"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAhpHRElo1lrlmOFLC44RjwHnl8uvkpBOsyZUbHoBDG1VzSqrdghMn-REYfxQn_GzZA3Z9-mBppiExlCsvdN-oymvFncWuKUWL6IglBzt-des_2q8KUq0pUJueK5LZ-fcxOkrFcKLbzCXV/s1600/Bloggertrix-Googleplus.png" /></a>
<a href="http://www.feedburner.com/Ajyvrma"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirXk1so63wE67hm1FFODLcLguPxNG8hmdrNTc-ZVKMBdXXdq52xZo8jPgLQdrMkPRDqzZxjBDnEIeO3U-MKCILoOAIw8N0xAn7TcoZXCpmdROSKSgQjPVDdp3uLlSdDaoG5-wjFG45HGyf/s1600/Bloggertrix-Rss.png" /></a>

<div><form action="http://feedburner.google.com/fb/a/mailverify?uri=Ajyvrma" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=bloggertrix', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow"><input name="uri" type="hidden" value="bloggertrix" />
<input name="loc" type="hidden" value="en_US" /><input name="email" autocomplete="off" placeholder="Enter your email address here"/>
<input title="" type="submit" value="Subscribe Now !" /></form>
</div></div></div>
Find "Ajyvrma" Without Quotes And Replace With Yours.
Save And Enjoy.


Popup Facebook Like Box For Blogger


Sign in to Blogger Dashboard 
Navigate to Layout>Add A Widget>Scroll Down & Select HTML/Javascript.
Now paste the following code there & Save.

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js'></script><script src="https://gj37765.googlecode.com/svn/trunk/html/[www.gj37765.blogspot.com]jquery.colorbox-min.js"></script><link rel="stylesheet" href="https://gj37765.googlecode.com/svn/trunk/html/%5Bwww.gj37765.blogspot.com%5Dfbpopup.css" type="text/css" /><script type="text/javascript">jQuery(document).ready(function(){if (document.cookie.indexOf('visited=flase') == -1) {var fifteenDays = 1000*60*60*24*30;var expires = new Date((new Date()).valueOf() + fifteenDays);document.cookie = "visited=true;expires=" + expires.toUTCString();$.colorbox({width:"400px", inline:true, href:"#mdfb"});}});</script><div style='display:none'><div id='mdfb' style='padding:10px; background:#fff;'><h3 class="mdbox-title">Receive all updates via Facebook. Just Click the Like Button Below<center><p style="line-height:3px;" >▼</p></center></h3><center><iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2YourPageURL&amp;width=300&amp;colorscheme=light&amp;show_faces=true&amp;border_color=%23ffffff&amp;stream=false&amp;header=false&amp;height=258" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:258px;" allowtransparency="true"></iframe></center><p style=" float:right; margin-right:35px; font-size:9px;" >You Can Also <a style=" font-size:9px; color:#3B78CD; text-decoration:none;" href="http://www.advancebloggertricks.blogspot.com">Get This</a></p></div></div>

Floating Social Share Widget For Blogger


Follow these simple steps...
1: Login to Blogger Dashboard & navigate to Template>Edit HTML
2: Now press Ctrl+F button on your keyboard and search for <html> in your template code.
3: Now copy the code written below & paste it below <html>
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
4: Now navigate to Blogger Dashboard>Layout  and click on Add a widget.It will open a popup window.Now scroll down & choose Html/Javascript  now their you will see text area after that copy the code given below & paste it their in text area.
<script>
var options={ "publisher": "ur-2defc331-4aef-ebcb-7b30-4b309e0a2a9", "position": "left", "ad": { "visible": false, "openDelay": 5, "closeDelay": 0}, "chicklets": { "items": ["facebook", "twitter", "googleplus", "linkedin", "digg", "email", "sharethis"]}};
var st_hover_widget = new sharethis.widgets.hoverbuttons(options);
</script>
5.Now save your template & check results on your blog.

Animated Social Sharing Widget


Learn To Add Animated Social Sharing Widget
Login to Blogger Dashboard.
Navigate To Template>Edit HTML.
Press CTRL+F on your keyboard & fined </body> in your template code.
Now paste the following code below </body>.

<!-- Start Social Sharing Widget Sassy Bookmarks HTML AdvanceBloggerTricks.Blogspot-->
<div class="shr_ss shr_publisher">
</div>
<!-- End Shareaholic Sassy Bookmarks HTML -->
<!-- Start Shareaholic Sassy Bookmarks settings -->
<script type="text/javascript">
  var SHRSS_Settings = {"shr_ss":{"src":"//dtym7iokkjlif.cloudfront.net/media/downloads/sassybookmark","link":"","service":"5,7,2,313,38,201,88,74","apikey":"b87f5899d80a5edce8b5e55f58542ef0f","localize":true,"shortener":"bitly","shortener_key":"","designer_toolTips":true,"tip_bg_color":"black","tip_text_color":"white","viewport":true,"twitter_template":"${title} - ${short_link} via @Shareaholic"}};
  </script>
 <!-- End Shareaholic Sassy Bookmarks settings -->
<!-- Start Shareaholic Sassy Bookmarks script -->
<script type="text/javascript">
       (function() {
             var sb = document.createElement("script"); sb.type = "text/javascript";sb.async = true;
            sb.src = ("https:" == document.location.protocol ? "https://dtym7iokkjlif.cloudfront.net" : "http://cdn.shareaholic.com") + "/media/js/jquery.shareaholic-publishers-ss.min.js";
            var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(sb, s);
        })();
        </script>
<!-- End Shareaholic Sassy Bookmarks script AdvanceBloggerTricks.Blogspot
 -->

How to Add Stylist 3D Email Subscription Widget

To Add 3D Email Subscription In Blog Follow The Simple Process Below:
Goto Deshboard - > Layout
Add Gedget - > HTML/Java Script
Now Paste The Following Text In It.

<form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=YOUR-FEED-ID ', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" class="login"> 
<h1>Subscribe To Us</h1> 
<input type="hidden" value="YOUR-FEED-ID" name="uri" /> 
<input type="email" name="email" class="login-input" placeholder="Email Address" autofocus> 
<input type="hidden" name="loc" value="en_US" /> 
<input type="submit" value="Subscribe" class="login-submit"> 
<p class="login-help"><a href="http://masterhacksindia.blogspot.com?src=fbform" rel="nofollow">MH</a></p> 
</form> 
<style> 
::-moz-focus-inner { 
  padding: 0; 
  border: 0; 

:-moz-placeholder { 
  color: #bcc0c8 !important; 

::-webkit-input-placeholder { 
  color: #bcc0c8; 

:-ms-input-placeholder { 
  color: #bcc0c8 !important; 

.input { 
  font: 12px/20px "Lucida Grande", Verdana, sans-serif; 
  color: #404040; 
  background: #ebc9a2; 

.input { 
  font-family: inherit; 
  font-size: 12px; 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box; 

.login { 
  padding: 18px 20px; 
  width: 200px;  background: #3f65b7; 
  background-clip: padding-box; 
  border: 1px solid #172b4e; 
  border-bottom-color: #142647; 
  border-radius: 5px; 
  background-image: -webkit-radial-gradient(cover, #437dd6, #3960a6); 
  background-image: -moz-radial-gradient(cover, #437dd6, #3960a6); 
  background-image: -o-radial-gradient(cover, #437dd6, #3960a6); 
  background-image: radial-gradient(cover, #437dd6, #3960a6); 
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 10px rgba(0, 0, 0, 0.5); 
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 10px rgba(0, 0, 0, 0.5); 

.login > h1 { 
  margin-bottom: 20px; 
  font-size: 16px; 
  font-weight: bold; 
  color: white; 
  text-align: center; 
  text-shadow: 0 -1px rgba(0, 0, 0, 0.4); 

.login-input { 
  display: block; 
  width: 90%; 
  height: 37px; 
  margin-bottom: 20px; 
  padding: 0 9px; 
  color: white; 
  text-shadow: 0 1px black; 
  background: #2b3e5d; 
  border: 1px solid #15243b; 
  border-top-color: #0d1827; 
  border-radius: 4px; 
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0)); 
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0)); 
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0)); 
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0)); 
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.2); 
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.2); 

.login-input:focus { 
  outline: 0; 
  background-color: #32486d; 
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 4px 1px rgba(255, 255, 255, 0.6); 
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 4px 1px rgba(255, 255, 255, 0.6); 

.lt-ie9 .login-input { 
  line-height: 35px; 

.login-submit { 
  display: block; 
  width: 100%; 
  height: 37px; 
  margin-bottom: 15px; 
  font-size: 14px; 
  font-weight: bold; 
  color: #294779; 
  text-align: center; 
  text-shadow: 0 1px rgba(255, 255, 255, 0.3); 
  background: #adcbfa; 
  background-clip: padding-box; 
  border: 1px solid #284473; 
  border-bottom-color: #223b66; 
  border-radius: 4px; 
  cursor: pointer; 
  background-image: -webkit-linear-gradient(top, #d0e1fe, #96b8ed); 
  background-image: -moz-linear-gradient(top, #d0e1fe, #96b8ed); 
  background-image: -o-linear-gradient(top, #d0e1fe, #96b8ed); 
  background-image: linear-gradient(to bottom, #d0e1fe, #96b8ed); 
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), inset 0 0 7px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.15); 
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), inset 0 0 7px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.15); 

.login-submit:active { 
  background: #a4c2f3; 
  -webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.1); 
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.1); 

.login-help { 
  text-align: center; 

.login-help > a { 
  font-size: 11px; 
  color: #d4deef; 
  text-decoration: none; 
  text-shadow: 0 -1px rgba(0, 0, 0, 0.4); 

.login-help > a:hover { 
  text-decoration: underline; 

</style>
Change The Blue Marked With Your Gmail Feed Address
Now Save And enjoy.

Best Alternatives for online Earning With Blog


One of the easiest internet marketing is CPM. CPM or Cost per Millions is advertising network which paid us (As a publisher) per 1000 impressions in our blog which have been installed the CPM ads. CPM is good for you who want to get dollar from internet with blog easily. Especially the blog has a high traffic, so you can get more dollar a day.
Here Are The Alternates

BlueAdvertise
BlueAdvertise or DEX Platform is a standardized direct banner media exchange platform for publishers.  BlueAdvertise helps to monetize publisher's websites, blogs , cms's and social websites with network CPM ads.  BlueAdvertise is an easy to use platform that accepts many international publisher.

Smowtion
Smowtion is a technology company specializing in the Ad-Network business. Smowtion is focused on developing products and solutions for the online advertising industry, helping them to target quality audiences. Smowtion also works with over 150,000 publishers worldwide, using the same optimization processes to help them obtain a higher eCPM and present visitors the most appropriate ads.

Tribal Fusion
Tribal Fusion is a digital marketing solutions company that drives superior results at all levels of the purchase funnel.  Tribal Fusion is built around dedicated vertical teams that leverage their industry-specific knowledge of “what works” to create fully customized advertising solutions to help companies capitalize on opportunities at every level of the consumer decision process.

How To Make Blog Faster



Some tricks to make blog fast :
I will discuss some problems to make blog faster. Who don't want their blog become light, surely all of bloggers want it because our visitors can browse our blog easier. Based on my experience, there are some tricks...

Picture
Did you know, pictures with large size can make our blog become slower. So, it's better for you to decrease the use large-size picture. Both in template and also posts. You can use Photoshop Save for Web & Device trick.

Widget
Over usage widget was one of problems which makes blog become slower. Especially if the widget contains heavy scripts. It's good for you to delete some widgets which unuseful such as clock, music player, pet, games, and so on. Use useful widget such as related posts, most popular articles, or maybe Google Friend Connect.

CSS and Javascript
As we knew, CSS and javascipt can make our blog become good looking. But the side effect is it can make our blog become slowly. So you should decrease the usage or compress it for your blog. To compress Javascript, you can use Javascript Compressor.

06 June, 2013

Best Tips To Increase Blog's Traffic


It Is Easy To Create Blog But hard To Get Sufficient Traffic. As per one estimate, there are more than 156 million public blogs found across the globe. But how many of these are read and followed or even found over any search engine is a big question. Creating any blog for business or any other purpose is a simple thing to do; however, making it popular across your readers is a challenge. You have to invest your time, money and efforts in getting the right target audience for your blog. The below mentioned tips would guide you to get a substantial amount of traffic to your blog.

Incorporate quality content:This is the most important element of blogging. People come in search for interesting and useful content at various blogs. Updating content on a regular basis with useful and quality content can help you in getting traffic to your blog. If you frequently update your blog with a proper weekly schedule, you would get repeat visitors. This will also make your blog search engine friendly improving your web page rankings over prominent search engines. To drive effective traffic to your blog, you should always have meaningful in your posts along with proper frequency.

The search engines:
You very well understand the importance of content optimization with popular and relevant keyword and key phrase research. However, this doesn’t mean that your content comes with excessive use of keywords or key phrases. By doing this, you will reduce the quality of your blog posts. Besides, these keywords should be used in your title, description and tags. Further, you need couple of quality inbound links as an effective SEO strategy. For this, you need to put your blog content over popular sites and blogs related to your niche area and link back to your blog. While linking back, you should rely on using popular and relevant keywords. These things will make your blog more visible over popular search engines.

Harness the power of comments:
Commenting is an easy and effective tool to increase traffic to your blog. To begin with, you need to respond the comments left over your blog posts by your visitors and thus trigger a two way communication. This will improve reader loyalty. Secondly, you need to leave comments on other blogs; this will help you to pull new and unique visitors. While leaving comments, you should include your blog’s URL; this will help you in creating backlinks for your blog. It is therefore important to leave meaningful comments over other blogs and provide a link to read more on your blog.  

Guest posts:
The idea of guest posting is really helpful in getting a decent amount of readers or traffic to your blog. This is pretty different than adding comments. Once you are able to connect with any popular blog of your niche area, create the opportunity for guest posts. If you post something interesting, useful and relevant content, you can certainly expect a good amount of traffic to your blog.  

Try forums:You can find a wide range of forums unlike the way you see blogs. You just have to find a relevant forum of your niche area subject and keep posting on a frequent basis.

Submit your posts on social bookmarking sites:
In order to boost traffic to your blog, you can think of submitting your quality posts and articles to various social bookmarking sites. Submitting your best posts at sites like StumbleUpon, Digg, Reddit, etc. are simple ways of getting good traffic to your blog.

Search Engine Optimization


Search Engine Optimization 

Search engine optimization or SEO is the hottest way to drive targeted traffic to your website. Maximizing the benefits of a well optimized website will yield lots of earnings for the marketer. However, optimizing your site might cost you thousands of dollars if you are not skilled in this area.
But to tell you the truth, you can essentially get information on low cost SEO anywhere in the Internet. But only several really show you how to work out an affordable search engine optimization endeavor. And those few that really inform include this article.

Keyword Research Tools
---------------------------------
You must do keyword research before you start optimizing your site, that much is obvious, but what tools should you use?
There are two excellent keyword research tools that I can recommend as professional tools. They are Wordtracker and Keyword Discovery. Both are great and both are different. Firstly start with with Wordtracker and then move over to Keyword Discovery after a year or so.

If you optimize a site with the wrong keywords you may end up with a high ranking site but won't convert your traffic! Correctly identifying the best keywords and search terms using a keyword search tool will help your odds of success and give you a fighting chance to target prospects who are more likely to turn into clients.
Check it out if you would like more information.

Use The META Description Tag
----------------------------------------
All websites should use the HTML <META> description tag. If you have too many pages to add it to, at least put in on your home page and any core pages that bring in search result traffic. Google will use the META description you place on your site if the user searched for a keyword that exists in the META description. Google is giving us some measure of control.

Create a Website Sitemap
----------------------------------
Some SEO tips can be hard to explain, but this is one of the few that is relatively easy to do and can be done manually with small or large sites. Create a sitemap of your website. There are a few good reasons to do this.
It allows easier indexing of your site by the search engines.
In other words, it helps the search engines to find all the pages on your site. Some websites only have a few of their pages in the search engines and this can be due to poor linking, sparse navigation or a host of other reasons.
It provides PageRank or link popularity to all pages it links to.
If you read about SEO then you have read how important it is to have high-quality links poiting to your site from the sites.
A sitemap can become another source of quality links with descriptive text for your own pages. Making navigation easier by including a sitemap is just good business sense as well as SEO sense.
Example: http://www.xyz.com/sitemap/

Duplicate Content & URL Canonicalization
--------------------------------------------------------
Before we get into this exclusive tip, let me provide a definition for the term Canonicaliztion.
"It is the process of converting data that has more than one possible representation into a standard canonical representation."
If your site has multiple pages with the same content possibly through a Content Management System(CMS) or through duplicate navigation, or because it actually exists in multiple versions, you could be hurting your search engine ranking results.

Most often this problem can be found on a site's homepage. For example: Search engines view your homepage as having more than one version. How? take a look at the following urls. All point to the same page, but to the search engines they are different. http://www.yoursite.com, http://yoursite.com, http://yoursite.com/index.html and http://www.yoursite.com/index.html. The search engines may find up to four home pages that have the same content.
While this may not cause your site to be unranked it is certainly not helping and can easily cause poor rankings. That is shame for something that is so easily corrected. Most often this is caused by links pointing to different versions of your site. You can't change all the links coming into your site, but you can use the 301-redirect to solve this by pointing all versions of your homepage to the full url.
You can read more at the following links:

Social Bookmarking
-------------------------
Social bookmarking involves saving bookmarks (web addresses) to public Web site such as Digg or Del.icio.us so you can access these bookmarks from any computer connected to the web. Your favorite bookmarks are also available for others to view and follow as well, hence the social aspect. If you wish to create your own social bookmarks, you must register with a social bookmarking site.
Bookmark sites you generally would like to share or feel are valuable, which of course can contain bookmarked web addresses of your own site. If enough people agree with the value of a bookmark you have placed they will bookmark it to and as the popularity grows your site traffic will grow.
Don't abuse this by submitting every page of your site, try to be judicious and think about what pages of your site may be helpful and of interest to other web surfers.

Here are some of the more popular social bookmarking sites:
1. Digg
2. Del.icio.us
3. StumbleUpon
4. Reddit
5. Squidoo

Get To Know Google Services
------------------------------------
What would an SEO Consultant's life be like without Google?
I've listed many services that Google offers and I'm sure you may be a bit surprised at how many different pies the search giant's thumb is actuall in.
Google Analytics:     http://www.google.com/analytics
Google AdSense:       http://www.google.com/adsense
Google Answers:       http://answers.google.com/
Google Blog Search:  http://blogsearch.google.com/
Google Bookmarks:  http://www.google.com/bookmarks
Google Directory:     http://www.google.com/dirhp
Google Groups:         http://groups.google.com/


Search Engine & Directory Submissions
-----------------------------------------------------------
Directories are an easy way to build links because anyone can submit age get listed. Directories can, therefore, be of little use for the same reason. Of course getting in directories can be time consuming but it is a one-time affair and usually worth the time. They provide one-way links which will increase your online presence. Not all directories are created equal and paying for the better ones is often money well spent.

Select the best category for your site and follow the instructions on the submission form carefully. Write your descriptions without sensational text. Descriptions of sites should describe the content of the site concisely and accurately When submitting to directories, make sure to vary anchor text and use keywords in the description and title fields.

Choose the most appropriate category for your site. Finding a category that best matches your site's theme or content will increase traffic from the directory and provide higher quality one-way link to your-site for the search engines to follow.

A few of the more search engine friendly directories for valuable links are the following:

03 June, 2013

Disable Right Click On Your Website Or Blog

Learn How To Disable Right Click On 

Your Website Or Blog From Visitors.


If you own a blog or a website then you always want to prevent other malicious bloggers from copying the content from your blog. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. To prevent such users from copying content from your blog use This Trick 
To Disable Right Click On Your Blog


  • Goto Blogger DashBoard Click On Layout 
  • Click On Add Gadget , Select HTML / JavaScript From The List.
  • Now Click On Edit On ot And Paste The Following Code And Save it.



<!--Code Start for Disabling Right Click In Blog-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<!--Code End for Disabling Right Click In Blog-->

 
Twitter Bird Gadget