Blogger blog articles each standard orange "B", the blogger favicon. Having your own unique favicon is a great way to give your Blogger template, and a separate brand and clear. These small images 16x16 pixels can definitely help your blog stand out from other blogs blogspot.
This is blog related to Technology. Here you will get tips and information about Blogs, Blogger Templates, Promotion of blogger, List of bloggers available in India.
Search Google
Showing posts with label How to. Show all posts
Showing posts with label How to. Show all posts
How to set Password Lock For Certain Post
How to set Password Lock For Certain Post
This step will helps you to protect some important posts in your blog. In order to enable this you need to follow some steps.
Steps to Follow
This step will helps you to protect some important posts in your blog. In order to enable this you need to follow some steps.
Steps to Follow
<script type="text/javascript">
var password;
var pass1 = "PASSWORD";
password=prompt("Please enter your password to veiw this page!:","");
if (password==pass1) {
window.location= "LINK TO BE OPEN IF PASSWORD IS CORRECT";
} else {
window.location= "LINK TO BE OPEN IF PASSWORD IS NOT CORRECT";
}
</script>
var password;
var pass1 = "PASSWORD";
password=prompt("Please enter your password to veiw this page!:","");
if (password==pass1) {
window.location= "LINK TO BE OPEN IF PASSWORD IS CORRECT";
} else {
window.location= "LINK TO BE OPEN IF PASSWORD IS NOT CORRECT";
}
</script>
Change the red colored lines according to your need.
How to Removing Attribution Gadget (Powered By Blogger)
You have to follow some steps to remove attribution gadget "Powered By Blogger" from your blog. Many peoples has a doubt that whether they can remove this gadget or not. This article helps them to remove the gadget.
Steps to Follow
1. Go to Design--> Edit HTML.
2. Expand your Widget Template.
3. Click Ctrl+F for the browser Find bar to pop up.
4. In the Find bar enter Attribution1
You will find the below code
Steps to Follow
1. Go to Design--> Edit HTML.
2. Expand your Widget Template.
3. Click Ctrl+F for the browser Find bar to pop up.
4. In the Find bar enter Attribution1
You will find the below code
<!-- outside of the include in order to lock Attribution widget -->
<b:section class='foot' id='footer-3' showaddelement='no'>
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>
<b:includable id='main'>
<div class='widget-content' style='text-align: center;'>
<b:if cond='data:attribution != ""'>
<data:attribution/>
</b:if>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
<b:section class='foot' id='footer-3' showaddelement='no'>
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>
<b:includable id='main'>
<div class='widget-content' style='text-align: center;'>
<b:if cond='data:attribution != ""'>
<data:attribution/>
</b:if>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
5. Remove the code which is in blue color
6. Save the template
You successfully removed the Attribution Gadget (Powered By Blogger)
How can i add simple drop down menu to my blog?
Drop down menu makes your blog as a website. It will help users to use the blog very easily. With this menu you can get more page views and traffic.
Drop Down Menu lokks like

Steps to add this drop down menu
1. Log in to your blog.

2.Go to design and select "Page Elements".

3. And click "Add Gadget" link.

4. Select the "Add HTML/JavaScript".

4.Copy paste the below code. The red color code should be change.
<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"
size=1 name=menu>
<option>- Your Title - </option>
<!-- change the links with your own -->
5.Save the template. Now your drop down menu added successfully.
Drop Down Menu lokks like
Steps to add this drop down menu
1. Log in to your blog.
2.Go to design and select "Page Elements".
3. And click "Add Gadget" link.
4. Select the "Add HTML/JavaScript".
4.Copy paste the below code. The red color code should be change.
<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"
size=1 name=menu>
<option>- Your Title - </option>
<!-- change the links with your own -->
<option value="http://yourlink.com">Title One</option>
<option value="http://yourlink.com">Title second</option>
<option value="http://yourlink.com">Title Third</option>
</select></form>5.Save the template. Now your drop down menu added successfully.
Labels:
Blogspot,
drop down menu,
How to
How Do I upload domain root folder in blogger?
The above question How Do I upload domain root folder in blogger? runs in the mind of the blogger when he want to upload root folder.
The answer for your query is
In blogger we don't have option to add root file. This is already built in with blogger. This option is available for only websites.
The answer for your query is
In blogger we don't have option to add root file. This is already built in with blogger. This option is available for only websites.
How to add the widget Related posts below every post in Blog?
The biggest problem for the blogger is the visitor will not stay more time on his blog. Because he comes to the blog by some article he reads the article and he will leave the blog. The widget Related posts gives the list of articles which contains same labels will be listed below every post. This makes users to stay more time on your blog and increase your pageviews and traffic.
How to add Related posts widget below every post?
Just follow the steps
1. Sign in to your blog. And go to Design. There you will see the ling "Edit HTML". Click on that. You will get the page which is given Below.
2. Click the "Expand Widget Template", And find the Below code in the template
<data:post.body/>
3. Just copy paste the code given below after the above code.
<b:if cond='data:blog.pageType == "item"'>
<div class='similiar'>
<div class='widget-content'>
<h3>People who read this post also read :</h3>
<div id='data2007'/><br/><br/>
<script type='text/javascript'>
var homeUrl3 = "<data:blog.homepageUrl/>";
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;
maxNumberOfPostsPerLabel = 100;
maxNumberOfLabels = 3;
function listEntries10(json) {
var ul = document.createElement('ul');
var maxPosts = (json.feed.entry.length <= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i < maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;
for (var k = 0; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement('li');
var a = document.createElement('a');
a.href = alturl;
if(a.href!=location.href) {
var txt = document.createTextNode(entry.title.$t);
a.appendChild(txt);
li.appendChild(a);
ul.appendChild(li);
}
}
for (var l = 0; l < json.feed.link.length; l++) {
if (json.feed.link[l].rel == 'alternate') {
var raw = json.feed.link[l].href;
var label = raw.substr(homeUrl3.length+13);
var k;
for (k=0; k<20; k++) label = label.replace("%20", " ");
var txt = document.createTextNode(label);
var h = document.createElement('b');
h.appendChild(txt);
var div1 = document.createElement('div');
div1.appendChild(h);
div1.appendChild(ul);
document.getElementById('data2007').appendChild(div1);
}
}
}
function search10(query, label) {
var script = document.createElement('script');
script.setAttribute('src', query + 'feeds/posts/default/-/'
+ label +
'?alt=json-in-script&callback=listEntries10');
script.setAttribute('type', 'text/javascript');
document.documentElement.firstChild.appendChild(script);
}
var labelArray = new Array();
var numLabel = 0;
<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = "<data:label.name/>";
var test = 0;
for (var i = 0; i < labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length <= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;
if (numLabel < maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
</div>
</b:if>
4. Save the Template. Now you added related posts widget successfully
How to Delete the blog?
In this article I am giving information about how to delete the blogs. We can delete the blog if we don't want use it anymore. In order to delete your blog you have to follow the steps which I have provided below
How to Delete the Blog?
Three steps are
How to Delete the Blog?
Three steps are
- Go to Blogger dashboard
- Click on "settings" option
- Click on "Delete blog" option
1. To delete the blog you must log into your blogger account. and click the settings button. You will get the below image

2. After clicking Delete Blog link you will get another page which is shown below. Once again click on the link Delete Blog.

3. Now your Blog deleted Successfully. If you want you can also Un-delete the blog within 90days
How to become good Blogger?
I have written this article to help people to know how they can be a good blogger. Here I have given almost all important things to be known. I assure that if you follow this article it will help you a lot.
First I would like to give some information about Blogging. Blogs are the websites where you can share anything you want to share. It is free place to share your views with web readers. You can also make money through blogs. Already many bloggers earning money. You need skills that's enough to earn money.
Here is the 10 tips for you to become good blogger
1. Write the contents about which you know more.
It is always better thing to write what we know than writing the contents which we don't know. If you write the article related to your life, the article contains true information and quality so that visitors will be happy to read your articles and they will learn
2. Be regular.
This is the main reason to attract people. If you post daily in your blog, readers will stick to your blog. If you can't post regularly then do post more articles in holidays and weekend days.
Here are some other tips to follow
First I would like to give some information about Blogging. Blogs are the websites where you can share anything you want to share. It is free place to share your views with web readers. You can also make money through blogs. Already many bloggers earning money. You need skills that's enough to earn money.
Here is the 10 tips for you to become good blogger
1. Write the contents about which you know more.
It is always better thing to write what we know than writing the contents which we don't know. If you write the article related to your life, the article contains true information and quality so that visitors will be happy to read your articles and they will learn
2. Be regular.
This is the main reason to attract people. If you post daily in your blog, readers will stick to your blog. If you can't post regularly then do post more articles in holidays and weekend days.
Here are some other tips to follow
- Don't use too many ads and banner in blogs
- Use similar blog title and URL.
- Keep interactions with your readers
- Don't post too big articles. try to give information with small articles
- Never expect more money and impression initially.
- Place subscribe buttons
- Make an 'About Me' in the page.
How to write or create new post in Blogspot step by step Explanation?
The next step after creating the blog is write or create a posts in the blog. We have some steps to to follow.
Steps to write or create new post in Blogpot
1. In order to post new article in blog you must login to your blogger account.
2.Open your blog and see at the top of your site. You will find the link "New Post" to post new article.

3.Click on "New Posts", You will get the below page. Write the title and description of your article and add suitable label to your article.

4.Click "Publish Post" to publish the article, "Save Now" is to save the article i will not publish in your blog."Preview" to see how your post looks.
Steps to write or create new post in Blogpot
1. In order to post new article in blog you must login to your blogger account.
2.Open your blog and see at the top of your site. You will find the link "New Post" to post new article.
3.Click on "New Posts", You will get the below page. Write the title and description of your article and add suitable label to your article.
4.Click "Publish Post" to publish the article, "Save Now" is to save the article i will not publish in your blog."Preview" to see how your post looks.
Labels:
Blogspot,
How to,
How to create
How to create Blog with Blogger step by step Explanation?
Now a days we can see that there are many blogs available and people earning some decent money through their blogs. Blogger is one of the best free website provider in the world.
If you are newbie and want to create blogs and earn money then this article gives complete information about How to create blog . You can easily create blog by using this article. I gave steps with images.
Steps to create Blog
1. First thing you want to do is Go to website address www.blogger.com and create a account with Blogger.
2. After creating account with Blogger, Log in to blogger account. You will get the below page Dashboard. In that page you can see the link Create a Blog (Marked in color).

3. After clicking on Create a Blog, You will get below page. In this you have to give Blog Title, Blog address And Word Verification.

4.If you are finished the above step. You almost created the blog. Now the next step is you have to select the template. You must select a template to proceed next. If you want you can change it later.
5. Now you have your own website. You can Start posting.
If you are newbie and want to create blogs and earn money then this article gives complete information about How to create blog . You can easily create blog by using this article. I gave steps with images.
Steps to create Blog
1. First thing you want to do is Go to website address www.blogger.com and create a account with Blogger.
2. After creating account with Blogger, Log in to blogger account. You will get the below page Dashboard. In that page you can see the link Create a Blog (Marked in color).
3. After clicking on Create a Blog, You will get below page. In this you have to give Blog Title, Blog address And Word Verification.
4.If you are finished the above step. You almost created the blog. Now the next step is you have to select the template. You must select a template to proceed next. If you want you can change it later.
5. Now you have your own website. You can Start posting.
Labels:
Blogger,
How to,
How to create
Subscribe to:
Posts (Atom)