Showing posts with label blog tutorial. Show all posts
Showing posts with label blog tutorial. Show all posts

Monday, December 3, 2012

3 Ways Chatwing Chatroom App Eases Information Relay in Any Website

Information is one of the prime ways why people are creating and visiting websites regularly. In fact, websites fall in thousands of niches each having variations in popularity and purposes. With this important fact, it is right to state that information is crucial to all types of online transactions. If you are considering building a website, bear in mind that you have to speed up any means of information relay. Luckily, as a website owner, you can utilize a chatroom application that can help you achieve your online goals. This chatroom application is provided by Chatwing.com, a company that excels in connecting people from different parts of the world. Listed below are the important ways the Chatwing chatroom can ease up any information relay process.


Diverse Chatroom for Everybody

Installing the Chatwing chat box for any website can guarantee streams of traffic daily. Of course, this depends on the overall content of the website and the niche being discussed. Niche popularities always vary, and they all have different numbers of subscribers. The Chatwing chatroom is useful for any niche and it can also accommodate thousands of visitors. With thousands of people visiting your website, you can expect a significant leap in online presence. As people converge in your Chatwing chat box, they can discuss important topics about your website or its covered niche. You can also share information with them.

Social Media for Communication Success

Through Chatwing tool’s social media integration option, anyone can log in with a Facebook or Twitter account. As a Chatwing admin, you can now regulate the login options. If you want to settle with Facebook only or Twitter, you can set it up in the application dashboard. With social media connectivity, your visitors can now expand their social networks. You can also send them friend requests to know more about your visitors.

Lots of Options for Lively Chat Experience

Chatwing chatroom is a smorgasbord of customization options, functions, and accessibility. In the dashboard, you can try out various colors to find the right theme that will fit to your website or blog. You can also set up an efficient word filter system to protect your chatroom from profanity. In case there are obscene members, you can always ban them from the chatroom and delete their messages. The choice is entirely yours you can now set the mood of the chatroom as often as you want.

The Chatwing tool may be a simple application but it fosters website owners and visitors. It presents a lot of choices and doesn’t hinder a website owner’s imagination. Real-time communication is also emphasized, speeding up the relay of data in any website. This “simply robust” chat application can ensure the success of your website in the long run.

Wednesday, July 25, 2012

Numbered Page Navigation For Blogger a Simple Step

Page Navigation facilitates visitors to explore our blog and view page per page. Blogger did not facilitate page navigation. Page Navigation is a really awesome and long awaited feature. Muhammad Rias of Techie Blogger had already developed a page navigation system for blogger.It really was an awesome trick which was made at a time when nobody could even think of implementing it on blogger.It had some minor bugs and now Abu Farhan has perfected it and he has now given us the perfect page navigation solution.

For WordPress users must already be familiar with page navigation. For Blogger users let's do this.

Here are the steps:

1.Login to Blogger Dashboard and navigate to Layout > Edit Html

2.Checkbox which says 'Expand Widget Templates'

3.Now find

]]></b:skin>

and replace it with

.showpageArea {
padding:10px;
}
.showpageArea a {
text-decoration:underline;
}
.showpageNum a {
text-decoration:none;
border: 1px solid #ccc;
margin:0 5px;
padding:5px;
background:#fff;
}
.showpageNum a:hover {
border: 1px solid #ccc;
background-color:#f0f0f0;
}
.showpagePoint {
color:#333;
text-decoration:none;
border: 1px solid #ccc;
background: #f0f0f0;
margin:0 5px;
padding:5px;
}
.showpageOf {
text-decoration:none;
padding:5px;
margin: 0 5px 0 0;
}
.showpage a {
text-decoration:none;
border: 1px solid #ccc;
padding:5px;
background:#fff;
}
.showpage a:hover {
text-decoration:none;
background:#f0f0f0;
}
.showpageNum a:link,.showpage a:link {
text-decoration:none;
color:#333;
}
]]></b:skin>

This is the CSS part which defines the look and feel of the page navigation.You can modify it according to your need

4.Next is the JavaScript part. Find

</body>

and replace it with

<!--Page Navigation Starts-->
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
var pageCount=5;
var displayPageNum=5;
var upPageWord ='Previous';
var downPageWord ='Next';
</script>
<script src='http://bloggergadgets.googlecode.com/files/blogger_pagenavi_min.js' type='text/javascript'/>
</b:if>
</b:if>
<!--Page Navigation Ends -->
</body>

5.Now SAVE

Saturday, July 21, 2012

How to find Blogger's blog ID number?

Sign into Blogger. In the list of blogs, tick on the blog which ID number you want (see screen shot below):

Look at the address bar with the blog URL at the top of the browser and you will see ID=1234567891011121314 as highlighted in blue in the screen shot below:

Those numbers are your blog ID number

Wednesday, July 18, 2012

How to change maximum number of posts in Blogger label page

Blogger has set a default maximum 20 blog posts in its label page (category page). This may or may not suit your preference or your purpose in setting up the label page. You may want to decrease it to increase download time. Alternatively, you may want to increase the maximum number of posts to show all posts with the same label (category).

If you want to change this default maximum number of post, you will have to edit the template. First, backup your blog template (Dashboard > Template > Backup (at the top right corner) > Download full template > All files)

Now you got to open the template editor (Dashboard > Template > Edit HTML). Tick [ ] Expand Widget Templates

Now use ctrl+F to help you find the following codes:



Replace the above with the following (I used the number 150 because I want all posts to be displayed in the label page. You may use other numbers in place of 150):



Repeat this for all instances of that you can find. I think for the Simple template, there will be 3 instances, so the above will have to be repeated 3 times.

When done, save template and exit.