Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo How To Add Disqus Comment System in Blogger Blog & Website? 2013

Seo Master present to you:
Disqus is a comments platform
Disqus is the new comment management system, most of bloggers and website owners used mostly.it is currently serving over 750,000 websites, In this article i am going to tell you about how to add Disqus comments system with a few fast steps, you'll upgrade your recent comment system with a new way to interact your guests.


Normally you don’t need to add the other comments system, because each website platform has their own discussion platform.But they're recent system. And if you're very little uninterested in blogger’s built-in system then you'll add Disqus comment system. This comment system can create your blog more professional. most important factor is, If you add disqus then comments are indexable by search engine therefore it's SEO Friendly. this system, not just the for blogger you can also add this system to Wordpress, Blogger, Tumblr, Universal Code,  Squarespace, TypePad, MovableType, Drupal and Joomla.

Why should we use.?
There are many good features with Disqus comment system after we comparison it with Blogger default comment system.
  • Realtime comment system
  • Notification and reply system
  • Inline media embedding
  • Mobile commenting
  • Social integration
  • The Community Box
  • Liking and sharing
  • Moderation tools
  • Spam-Be-Gone
  • Mobile apps
  • Blacklists and whitelists
  • Import and export
  • International languages
  • SEO-friendly and local sync
  • Theme customization
  • Tweets and reactions
  • Profile management
  • Activity streams
  • Connected communities
Follow the steps.
1. At first you need to register a free account for your website on Disqus website. Go to disqus.com and click "Get this on your site" fill registration form, Give your Site URL, Site name, Site Short-name  Create your Disqus account by giving username, password and email address.(Do not forget to verify your identity though email verification) Then click Continue.

DISQUS - Register site
2. After pressing the Continue button, a new window will appear, which will ask you to select a Platform. Just Select "Your Platform(Blogger, WordPress)" from the list and proceed to the next step.

Choose a platform - Settings - DISQUS

3. Next click “Add disqusname to my Platform (WordPress,blogger, type-pad & other) site”
follow given instructions & continue all steps

4. Your comments system is ready and look like below screen short..

Blogger Known DISQUS comments system

2013, By: Seo Master

seo How to Add Facebook Like Box to Your Website/Blog 2013

Seo Master present to you:
Add Facebook Like Box
The previous troutal we have learned how to create facebook page for website/blog and business and in this post we will learn how to add Facebook like box or Facebook button to website/blog.

A Facebook “Like Box” on your web site is a good way to increase the number of people who “like” your Facebook Fan page. When we add a Facebook box into our site our fan follow easily our site through Facebook and easily get all update via Facebook. Let’s see how we can add the Facebook Like Box (the newer version of Fan Box) to a website or blog in a few minutes.

Facebook Like Box


Note: If you probably did not create Facebook fan page for your website then please read our previous post how to create Facebook page for website or blog.

Follow steps to add Facebook like box to your website/blog.

  1. Go the Like Box Social Plugin Facebook page
  2. Enter the web page address or URL of your Fan page in in the first box; for example: http://www.facebook.com/bloggerknown
  3. Customize the width, color and what things you would like to appear in the Like Box that will be shown on your page
  4. Click the Get Code button and copy the text in the iframe text box (Do not copy the XFBML text box)
  5. put this code is the place you want to show , 
  6. Blogger > Go to Blog Dashboard > Layout > Add Gadget > Edit HTML and past code in html box.
If you want to change the design options simply repeat all the steps above. If you have any problem then please use comment box for feedback and other suggest.
2013, By: Seo Master

seo How to Create Facebook Page for Website/Blog and Business 2013

Seo Master present to you:
Facebook Fan PageFacebook is the world's second largest website after Google and no one social media website. Nowadays the all internet users use Facebook. Every business since everyone is special and a common man uses Facebook.A Facebook page is a perfect way to connect with your customers on Facebook,

How do I create a Facebook page for website/blog and my business?


1.Log in to your Facebook account. Your new page will be linked to this account, and any changes you make to your account will need to be done after you log in.

2. go to https://www.facebook.com/pages/create

3. Here you can select any category according to your business.

Pick a category from the following list:

  • Local Business or Place
  • Company, Organization or Institution
  • Brand or Product
  • Artist, Band or Public Figure
  • Entertainment
  • Cause or Community


How to Create Facebook Page

For example, to create a page for your blog or website
4. The first step is to choose what style of page you may produce. select “Brand, Product, or Organisation”, and select the ‘Website’ profile within the in the menu.
Select Brand or Product for website

5. Give your page a name, and agree to the Facebook pages terms and click Get Started
6 .On the Next Page, Upload an Image for your Fan Page and other setting, it is exactly the same for your Facebook profile.
7. You'r page is now ready and how do you change the page usernames & page web address
First page webaddress link of your page like this https://www.facebook.com/pages/Name/(ID)108248082539363
How do we can change?
For that we should need 25 like for page
1. Enter you page account
Enter your account
2. go to Edit Page > Update Info > Basic Information here you can view user name You can now direct people to
click Change username and enter your page name like "bloggerknown"

Now you can update your blog status of the page.
Thank you all if any doubts please leave comments. for more detail please click here
2013, By: Seo Master

seo How to Convert Images into Black and White Using CSS 2013

Seo Master present to you:
Today tutorial i will tell you how to change the color images into black and white using simple script. This code has the ability to make images into black and white using CSS. Turn images into black and white without having to use Photoshop and other image editing softwar .
It is always nice to turn your colorful images into black and white in your web design work. Adding such a grey-scale effect on images is useful for gallery and hover effects designs.

Check out the demo below:

Convert Images into Black and White

Click Here for More Live Demo:

How can Add Css Code into your blog.


  1. Go To Blogger > Design > Edit HTML
  2. Search (Ctrl+F) for  ]]></b:skin>

Past below code above ]]></b:skin>

#bk-grayscale{
background:url("1.jpg")no-repeat;
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
}
And put the below code where you want to show images.

<img id="bk-grayscale" src="IMG URL" />
 Change IMG URL with your image URL

And if you can add only one image on post or widgets then only put below html code


<style>
#bk-grayscale{
background:url("1.jpg")no-repeat;
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
}
</style>
<img id="bk-grayscale" src="IMG URL" />
Change IMG URL with your image URL

Hope I was able to explain everything to the point. You can use other options along with grayscale filter on the images like hover effects and gallery stuffs without the need to use Photoshop or any other image editing software.
2013, By: Seo Master

seo How to Create Google+ (Plus) Fan Page for Website/Blog 2013

Seo Master present to you:

How to Create Google+ Page

Google recently introduced Google+ Page. Many people take advantage of it and still many new users do not know much about it so today tutorial i have tell you  how to create google+ plus for your business and individual website or blog. and many user use defult blogger profile they how can move blogger profile to google + plus Pages. it is very similar to the Facebook Fan Pages.

Why Use Google Plus?

Google+ Pages that a media business promotion, brand, organization, until the web / blog.
I  see so many advantages Google+ Pages, such as to unite the fan or follower of the blog in a major media as well as serve as a medium of information for them about updating the blog.
Associated with the profile, of course, use that profile integrated (sourced from one profile to all kinds of Google services) makes it easy to fit into a variety of services with just one click without having to log in repeatedly.
it is very similar to the Facebook Fan Pages.

How to create a Google+ Fan page

1. Go to this page  here you will find many category page. To create a page for your site then click Product or Brand
How to Create Google+ (Plus) Fan Page for Website/Blog

2.Select a category click website and click Next
google profile for blog

3. Enter the Blog Title and URL as Follows and Tick the Agree Page Terms check-box and Click on Create Button.
How to Create Google+ (Plus) Fan Page for Website/Blog
4. Enter the Tagline of the Blog and Upload a Profile photo (if any!)
5. Share your page with friends after complete click Finsh

 To Grow your fans and Audience, add the official Google+ page badge to your blog.
Click here to create blogger badge for your blog


How to Transfer Blogger Profile to Google Profile


You have created the Google + account​​ already follow above method.
1. Logged into Blogger
2. Go to Dashboard
3. Select the tab  Google+ and select the Upgrade Google +,see the below picture:
How to Create Google+ (Plus) Fan Page for Website/Blog

Tick the I have read above check-box and Click on Switch Now
How to Create Google+ (Plus) Fan Page for Website/Blog
Now move on To your Google+ Plus Page.
How to Create Google+ (Plus) Fan Page for Website/Blog

After the process is complete, Blogger will display Google+ profile (name, profile picture, and information) on the blogger profile gadget (if installed) and when my friend made ​​a new post or comment (name and profile picture) , but the old posts and comments have not changed. If my friend was not satisfied with the integration of Blogger to Google+ profile, do not worry. Blogger profiles can be restored to the condition, such as that already noted above, the return (revert back) Blogger from Google+ profile no more than 30 days after the integration is performed. trick? Just go to Blogger revert profile and finish.
Good Luck & Happy Blogging
2013, By: Seo Master

seo Make Your Own Favicon In Favico.Com 2013

Seo Master present to you:

Favicon In Favico.Com

Maybe all friend already know what is Favicon?? Yapss ... Favicon stands for "Favourite Icon" which is a picture / logo from a website or blog that appears on the browser, the user Blogger - Blogspot by default already has the form of a default favicon icon logo blogger.
Blogger Favicon is an image with the letter B logo with orange color background. If it is too general you can replace it with our own image. Favicon image that can be used is the image format. Ico, Well this time I gave a little tutorial of how to make their own favicon in favico.com.
Favico.com is one site favicon providers, there are many more sites like favicon.cc favicon providers, etc.

How to Make it??

1. Set up drawings / make first picture jpg or png format.
2. Open Site Favico.com.
3. Click browse and select the folder icon image that will be created blog> choose size 32x32> and click Create.
Make Your Own Favicon
4. If It first click Preview to see the result and click download.
Make your own favicon online free

How can Add this Favicon in Blog?

1. Go to Dashboard> Layout> Click Edit on the favicon blog.
2. Then will come a new tab, click choose file and select the favicon that was created earlier. and click save.

Upload Favicon

Thank you. I hope you will like this tutorial.
2013, By: Seo Master
Powered by Blogger.