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

Seo Master present to you: The comments are an essential part of a blog because in them is reflected the readers' opinions regarding a post or our blog, so it is important to spend a little of our time to make this part looking more presentable, accessible and neat.

To set in order our comments, it is necessary to make each comment easy to identify, therefore to know from where it begins and to where it ends, otherwise it becomes a jumble of letters of which the reader can run away. Here are some ways to make some order by separating each comment.

- Add a Separator To Blogger Comments
- Add a Divider Below Comments in Blogger
- Fully Customize Your Blogger Comments By Changing The Background Color and Border

The first method is the easiest, and is about how to put a border below our comments, this is to separate each blog comment in a simple but effective way.

How to Add a Separator/Border To Blogger Comments

customize comments, blogger

Step 1. To add a simple separator go to Template > Edit HTML and click on the small arrow on the left of <b:skin>...</b:skin>
Step 2. Click anywhere inside the code area and search using CTRL + F keys, for the following piece of code:
]]></b:skin>

Step 3. Paste the following style just above it:

- If we are using threaded comments (with the reply option):

.comment-block {
border-bottom: 1px solid #000000;
}

.comments .continue {
  border-top: 0px solid $(widget.alternate.text.color);
}

- If we are using previous commenting system (with no reply option)

#comments-block .comment-footer {
border-bottom:1px solid #000000;
}

Note: To change the border's color, replace the bolded color value and to change its thickness, increase/decrease the 1 value.

Step 4. Save the Template.

Instead of a simple border, we can also add a divider/image between our comments.

How to Add a Divider (Image) Between Each Comment in Blogger

blogger comments, blogger tricks, blogger tutorials

Step 1. Go to Template > Edit HTML and search (CTRL + F) for the following piece of code:
]]></b:skin>
Screenshot:


Step 2. Paste the following just above it:

- If we are using threaded comments (with the reply option):
.comment-block {
background-image:url(http://www.matrixar.com/-YaY5yi0UcbM/UTpA2jWBJFI/AAAAAAAAC_0/UXbviThYl2w/s1600/74.gif);
background-repeat:no-repeat;
background-position:center bottom;
padding-bottom:30px;
margin-top: -10px;
}

.comments .continue {
border-top: 0px solid $(widget.alternate.text.color);
}

- If we are using previous commenting system (with no reply function)
#comments-block .comment-footer {
background-image:url(http://www.matrixar.com/-YaY5yi0UcbM/UTpA2jWBJFI/AAAAAAAAC_0/UXbviThYl2w/s1600/74.gif);
background-repeat:no-repeat;
background-position:center bottom;
height: 50px;
}

Note: The URL that is in blue represents the image that you can change as you like, just remember that at the height must set the height of an image with 30px more, for instance, if the image's height is 50px then the value will be 80px. This is for making sure that the image won't overlap the date of comments. (for threaded comments, increase/decrease the padding 30 value)

Step 3. Save the Template.

But you can still have more styles for each comment, for example adding a background color and a border.

How to Add A Border and A Background Color To Blogger Comments

blogger tips, blogger tricks, gadgets
Step 1. Go to Template > Edit HTML and search for the following piece of code:
]]></b:skin>

Step 2. Paste the following just above it:

- If we are using threaded comments (with the reply option):
.comment-block {
background:#F9F9F9; /* Background Color */
border: 1px solid #f1f1f1; /* Border style */
margin-bottom:20px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

.comments .comment-thread.inline-thread {
background-color: #FAFAFA; /* Background color behind the replies */
border-left: 4px dotted #E6E6E6; /* Border on the left side of replies */
}

.comment-content {
padding:2px 10px 10px 10px;
color:#444444; /* Font Color in Comments */
}

.datetime a {
font-style:italic;
font-size:9px;
margin-left: 2px;
}

.comments .comments-content .user a{
color:#1982D1; /* Author's name color */
font-size: 12px; /* Author's name size */
padding-left: 10px;
font-weight:bold;
text-decoration:none;
}

.comments .comment .comment-actions a,.comments .comment .continue a{
display:inline-block;
margin:0 0 10px 10px;
padding:0 15px;
color:#B4B4B7;
text-align:center;
text-decoration:none;
background:#F8F8FB;
border:1px solid #C2C2C5;
border-radius:4px;
height:20px;
line-height:20px;
font-weight:normal;
cursor:pointer;
}

.comments .continue {
border-top: 0px solid $(widget.alternate.text.color);
}

.comments .comments-content .icon.blog-author {
background-image: none;
margin-left: -10px;
}

.comments .avatar-image-container{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
width: 40px;
max-height: 40px;
border: 1px solid #F2F2F2;
padding: 1px;
}

.comments .avatar-image-container img{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
max-width: 40px;
height: 40px;
}

Step 3. Save the Template.

- If we are using previous commenting system (with no reply function):

Step 1. Search for this line in your template:
<b:loop values='data:post.comments' var='comment'>

Step 2. Then, add the following code just below of it:
<div class='comments-ct'>

Step 3. Look a little further down and you'll see the </b:loop> code and just above it, add this:
</div>

Step 4. Now find this:
]]></b:skin>

Step 5. And just above of it, add this CSS code:
.comments-ct{
background:#F9F9F9; /* Background Color */
border: 1px solid #f1f1f1; /* Bprder Style */
margin-bottom:20px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

.comment-body {
color:#444444; /* Font Color in Comments */
padding:10px;
}

.comments-ct a {
padding-left: 5px; /* Link color */
color: #4A9BD8;
}

.comment-timestamp a {
font-style:italic;
font-size:9px;
padding-right:10px;
padding-left:10px;
}
(The rounded edges will not work in Internet Explorer with CSS)

In either case, you can change the background color, border, etc.. in parts with annotations in green.

Step 6. Save the Template.

If you need more help, leave a comment below.2013, By: Seo Master
Seo Master present to you:
facebook new news feed design
As Facebook is one of the most popular social networking site, it tends to experiment with its design and add new features For example in 2012 it introduces Timeline and added feature of video calling. On Thursday facebook unveils its redesign News Feed. You can customize the News Feed by selecting options from feeds like: Most recent, friends, group, music etc. The great thing about the new design is that the customized settings will work on multiplatform for Example customized settings for News feed will be shown on your tablet as well as mobile phone or any other devices.

How To Get New Design ?

If you join the wait list you will be one of few users who can experience this new feature before others, otherwise it will take few weeks to show up new design for your account. Follow the simple steps given below to try this new facebook look.

1. First Login to your Facebook account.
2. Then go to www.facebook.com/about/newsfeed
3. Now scroll to bottom of the page and click on Join Wait List

facebook new news feed design

Few ScreenShots Of New Design

If you are eager to see the new look of facebook, check out few screenschots of facebooks new design. 

facebook new news feed design

facebook new news feed design

facebook new news feed design

Video Of Facebook New Look




2013, By: Seo Master
Seo Master present to you:

10 Latest SEO tools to Help your Website | Blog SEO Free 2013

Today I am going to discuss with you about what SEO tools and how to use it. So if you want successful online business then you are going to need know the entire thing about SEO. Here are some SEO techniques and tools. You should definitely to adopt:

free seo tools seo make free tools

1.       Backlink Building  Services or Tools

Use the automated tools or the professional backlink building services to create a more and free backlinks and this is helpful for your website. For Make free backlinks check my tutorials give your free more then 6000+ backlinks easily.

2.        Backlink Analyzer tools

There are so manyfree and latest tools that  will easily analyze that how many free backlinks your Blog | webpage has and this has the Directly impact on the Google | Bing  search engine rankings.

3.         Search Engine Ranking Reports

Search Engine Ranking Reports contain your important data about that how well your webpage and website fare in the Google | Bing search engines for your keywords and this can give just idea that Your SEO strategy is right working or not.

4.         Google PageRank

This is very important that Google PageRank is a statistic and that tells you how the Google views the tested your website URL. Google offers the tool to reveal and this for your website. If you want PageRank for your website so then you can make some on page and off page SEO important for your website

Free eo tools forgoogle seo tools

5.        Domain Popularity Analyzer

If you running a website | Blog so this is very important that how your competitors website owner are doing with his website and use the domain | website popularity tool to and you can  see that how they compare more backlinks and visits.

6.        Google SEO Tools

Google is Very important Search engine as all you know that so Use Google and Google itself to analyze your website’s | Blog SEO. So try to use webmaster account daily and checked all update From Google.

7.        Domain Age Tool

The age of the website is quite important in the Google | Bing rankings, and with mature websites | Blogs having stable ranking positions.so it’s very important for the Domain for the search engin.

8.        Plagiarism Checker

This is very important if you write article or tutorials then you have to checked plagiarism or not. So make sure yourself otherwise Search Engine Banned you and Advertiser also so check online easily.
free seo tools google seo tools

9.         Keyword Density Checkers

There are lots of tools available in internet which will tell you that what the density of the chosen keyword is on your website, domain and page. This is can help you find what the actual keyword suitable for your website.

10.  Pages Indexed Analysis

If your page is not indexed fast so try to Use the tool that analyzes that how many webpages from your website are currently indexed or not by the Google | Bing search engines.

So this is some tools that Help to your website to increase your SE0 experience easily so if I have mention I think all tools and summarize it. So share your experience below
2013, By: Seo Master
Powered by Blogger.