Ads 468x60px

Pages

Sabtu, 07 September 2013

How to Customize Blogger Comments By Adding a Background Color and Border

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 borders 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(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpuRPyiCv8M4ZdxLaVH4zOU1vAhtdjvC_Rf76uheg57D8jiDG5RdUFH5Iz7gvZoRfanoqdCg2TctTWI_SexQDWGAcsJjtZcBkglAlQbEiSsGaQHtRMVpW7zGCHKTDYYTu3fPosjAMVYlJQ/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(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpuRPyiCv8M4ZdxLaVH4zOU1vAhtdjvC_Rf76uheg57D8jiDG5RdUFH5Iz7gvZoRfanoqdCg2TctTWI_SexQDWGAcsJjtZcBkglAlQbEiSsGaQHtRMVpW7zGCHKTDYYTu3fPosjAMVYlJQ/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 images height is 50px then the value will be 80px. This is for making sure that the image wont 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; /* Authors name color */
font-size: 12px; /* Authors 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 youll 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.
Read More..

Runtimes Captain Nemo Pro 5 10




File System Mounter without installation.

Download Portable CaptainNemo (2.5 MB)


Extract and run CaptainNemoPortable.

Settings of installed CaptainNemo should be preserved.

Read More..

Jumat, 06 September 2013

BurnAware Professional Free 6 4 Multilingual



Disc burning software without installation.

Download Portable BurnAware Pro Online (0.3 MB)

Download Portable BurnAware Free Online (0.3 MB)


Extract and run BurnAwarePortable.

Language set by launcher according UserDefaultLang (if you dont want: write in BurnAwarePortable.ini: UserDefaultLang=false and Language=english or brazilian or catalan or chinese_simp or chinese_trad or czech or dutch or french or georgian or german or greek or hebrew or hungarian or indonesian or italian or norwegian or polish or russian or spanish or turkish or ukrainian).

Settings of installed BurnAware should be preserved.


Read More..

Calibre 1 1 0 32 64 bit Multilingual




E-book management without installation.

Download Portable Calibre 32-64 bit Online (0.3 MB)

In first screen enter: 1.1.0


Extract and run CalibrePortable.

Default Library in CalibrePortable, edit CalibrePortable.ini to change (must be in same drive).

Settings of installed Calibre should be preserved.


Read More..

Apple Safari 5 1 7 Multilingual




Apple Web Browser without installation.

Download Portable Safari Online (0.4 MB)



Flash Plugin



Extract and run SafariPortable.

If you want to backup cache: edit SafariPortable.ini

Settings of installed Safari should be preserved.



Results in Acid3 Test: 100 %


Read More..

Numbered comments on threaded comments for Blogger Blogspot

In a past tutorial, Ive been talking about how you can add numbered comments to your blogger blog and today well learn how we can add numbered comments along with comment bubbles on the threaded comments as well.

What the following CSS trick will do for you:
  1. When the general block of comments is initiating (.comments-content) a counter called countcomments activates and starts with an initial value of 1. 
  2. Then, each time the code flow goes through a review of any level, either a principal or a reply comment (.comment-thread li), content will bring us in front (:before) of the body of the comment, the number that is the counter at the time.
  3. Then is incremented in one unit the counter (counter-increment).
See the screenshot:
count comments, comment bubble, forum, blogger

Isnt that great? Well, im pretty sure many of you have been waiting for this cool trick. So lets begin applying it for our threaded comments system.

Steps to add bubble comments count

Step 1: Go to Dashboard - Template - Edit HTML (click on Proceed if needed)

    ...Expand Widget Templates:



    Step 2: Search (CTRL + F) for this piece of code:

    ]]></b:skin>

    Step 3: Add the following code just above it:

    .comment-thread ol {
    counter-reset: countcomments;
    }
    .comment-thread li:before {
    content: counter(countcomments,decimal);
    counter-increment: countcomments;
    float: right;
    z-index: 2;
    position:relative;
    font-size: 22px;
    color: #555555;
    padding-left:10px; 
    padding-top:3px; 
    background: url(
    https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkYWPmLTZMazDh4ag340ACug_bTFitD9eAqKA3S1utBWOHgW8IGLnlNhzqj7_9467s_JCBb4SE3OLfs4zrmZ03BJgQMXq2Et4DTZ2H1J9VJDZxyM_SUGcxHMvA_F6lr6r8tQKAdx1dvbZH/s1600/comment+bubble2.png) no-repeat;
    margin-top:7px; 
    margin-left:10px; 
    width: 50px; /*image-width size*/
    height: 48px; /*image-height size*/ 

    }
    .comment-thread ol ol {
    counter-reset: contrebasse;
    }
    .comment-thread li li:before {
    content: counter(countcomments,decimal) "." counter(contrebasse,lower-latin);
    counter-increment: contrebasse;
    float: right;
    font-size: 18px;
    color: #666666;
    }

    Note:
    • for no bubble icon, remove the code in red (including the blue code)
    • to change the comment bubble, replace the code in blue with the URL address of your own icon. If youre not sure what icon you should use, you can find some cool icons in my previous posts (see these tutorials here and here)
    • to change the position of comments count, increase/decrease the values (3 & 10) from padding-top and padding-left
    • to change the position of comments bubble/icon, change the values (10 & 7) from margin-left and margin-top
    Step 4: Now Save the Template and youre done!

    If you enjoy reading this blog, please share and subscribe. For any questions, leave a comment below.
    Read More..

    How To Remove Blogger Navbar

    WHAT IS BLOGGER NAVBAR?
    Blogger has got a Navigation Bar that appears by default at the top of every Blogger-powered blog. This navigation bar can be very useful when you are blogging, but sometimes, it can get in the way. The Blogger navbar is usually hidden in most of the third party templates.

    The advantages of it are the following:

    - when you click on the B icon, it will take you to blogger.com
    - a quick link to your Dashboard and "Sign in /Sign out" dialog
    - you can easily search for other blogs
    - you can "Flag Blog" (if you consider content of a blog objectionable)
    - NextBlog - takes you to a random, recently-updated Blogger blog

    The only disadvantage is visual. If you have customized design, Navbar just doesnt fit in.

    So how we get rid of it? It is very simple. Just follow the next steps...

    Removing The Blogger Navbar:

    1. Login to your Blogger account, click on your blog name and navigate to Layout;

    2. Look for the Navbar text and click on the Edit link as shown in the picture below:

    blogger navigation bar, blogspot tricks

    3. When the pop-up window appears, scroll down and select Off, then click on Save button:

    blogger navbar, navigation bar, blogger

    Youre done.
    Read More..