Customize Popular Post Widget in Blogger With CSS
Why We Need To Disable Copying Of Text On Blog
There are many plagiarism issues we must take care of our contents and keep eyes on it 24 hours. One the biggest problem for those who's running Google Adsense account Because soon Google will disable Adsense account if they found your content many times on different locations on the internet. So the latest Google Panda have a strict rules against copyrighted contents. So we must check our content trice times a day that who is trying to copy our posts, contents or articles. So below i will provide i Css code which will help you to disable the selection of texts in blogger. So that no can easily copy or steal your content from the blog. So if you run a technology blog and provides a code to users and want to prevent them from copying any other text enclosed with blockquotes follow the below tutorial.
How To Disable Selection of Text and Enable Text Within Blockquotes ?
To know that how to disable how to disable selection of text forever in blogger, so we will provide you a Css code which will completely disable the left click on your blogger blog. So follow the steps carefully which will guide you completely about adding this code.
- Login Blogger Dashboard.
- Goto template and click on Edit Html.
- Find the below code by pressing Ctrl+F.
]]></b:skin>
- Now the paste the below code above/before ]]></b:skin>
.post blockquote{-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
body {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
- After pasting the above code click on save button and content is being protected from copied.
0 comments :
Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.
Note:
1. Make sure to click the "Subscribe By Email" link below the comment to be notified of follow up comments and replies.
2. Please "Do Not Spam" - Spam comments will be deleted immediately upon our review.
3. Please "Do Not Add Links" to the body of your comment as they will not be published.
4. Only "English" comments shall be approved.
5. If you have a problem check first the comments, maybe you will find the solution there.
Post a Comment