Showing posts with label Help. Show all posts
Showing posts with label Help. Show all posts

Edit Blogger Mobile Templates

1 Comment
here is some Good news from the Blogger Team on the Blogger Code Blog. If you have enabled the Mobile Templates, you will be able to customize the Blogger Mobile Template by using CSS definitions. You will also be able to control which widgets are to be shown and which shouldn't. You can also configure the widgets to show an alternate content in the mobile view.
Though this looks so promising, I was not able to test all of these features.

Where to Start?

Go to Template and Click on the Gear Icon below the Mobile Template. From the Dropdown opt for “Custom”, Preview the mobile template  and Save it. 
image

Customizing the structure of your Mobile Template.

Blogger Templates are made up  using Widgets.Blogger has added a new property(mobile) to the <b:widget/> tag. This property can take values ‘default', ‘yes', ‘no' or ‘only'. And this property will determine how the widget will be rendered in the mobile view.
The widgets that display on mobile by default are the following:
  • Header
  • Blog
  • Profile
  • PageList
  • AdSense
  • Attribution
If you want to hide any of those, then use the property mobile='no' in the Widget tag, and that widget would no longer appear in the mobile view.
For example I can hide the Attribution Gadget in Mobile view if I use
<b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'/>
If you want  to display the non-default widgets in your Mobile view, then just set the mobile property to yes.
E.g.: this is the normal tag for the Blog Archive Widget
<b:widget id='BlogArchive1' title='Blog Archive' type='BlogArchive'>
Now if you set the mobile property as
<b:widget id='BlogArchive1' title='Blog Archive' mobile='yes' type='BlogArchive'>
, then you should see the archive widget on your Mobile View(I didn't get it working).
If you want a widget to appear only in the mobile view, then you can set the mobile property to 'only'
<b:widget id='Attribution1' locked='true' mobile='only' title='' type='Attribution'/>
If I use this tag, the attribution gadget will disappear from my desktop view, and will appear only on the mobile view.
This code change will make the attribution widget disappear from your Mobile View.

Customizing the Look and Feel of your Mobile Template

Now you can fully customize the looks of your mobile template. The body element of the mobile template will be styled my the mobile class
<body class='loading mobile'>
Make sure that your template has:
<body expr:class='&quot;loading&quot; + data:blog.mobileClass'>
So if you are good at CSS, you can use this class name to style your mobile template.
.mobile .date-header {
  text-decoration:underline;
}

Alternate Widget Content on Mobile View

Once you switch to the Custom Mobile Template, you might find that the template is too huge to fit into a Mobile Browser. If you want, then you can provide alternate content inside a widget.
e.g:
<div class="widget-content">
  <b:if cond="data:blog.isMobile">
    <!-- Show a text link in mobile view.-->
    <a href="http://www.blogger.com">
      Powered By Blogger
    </a>
  <b:else/>
    <!-- Show an image link in desktop view.-->
    <a href="http://www.blogger.com">
      <img expr:src="data:fullButton" alt="Powered By Blogger"/>
    </a>
  </b:if>
</div>
This will show a Powered by Blogger Text link on the Mobile View, and a Powered by Blogger image on the normal desktop view.
The condition
<b:if cond="data:blog.isMobile"/>
can be used to check if the viewer is viewing your blog in a mobile browser or not. You can use this conditional check creatively and give a totally different look to the mobile version of the blog. Happy hacking, and do share if you have created some really awesome mobile template :)

Add Blogger Sitemap to Google Webmaster Tools

Be The First To Comment

I hope you do know about Google Web Master Tools. This tool enables Webmasters to provide a better and detailed information of their site to Google.This will greatly help you in your SEO needs.Webmaster Tools allows you to submit your blog's sitemap so that Google gets a better idea of your blogs structure.

Blogger’s robots.txt file automatically specifies a sitemap URL[The blog feed], but it would be even better if you manually add the sitemap URLs to GWT.

Wordpress and other blogging platforms have some Sitemap generator plugins for the same.If you are using blogger you can use your blog's atom.xml feed as your sitemap.


Note:- If you have disabled Blog Feeds then enable it by going to Settings > Site Feed and change Allow Blog Feeds to Short or Full. (Don't set it to None)
1. Login to Google Web Master Tools with your Blogger account.
2. See if your Blog is already listed there, if it is listed and verified then click on the blog name and proceed to Step 5
3.If its not listed, Click on the Add a site button and provide your blog URL there and hit continue.

4.It will now ask you to verify your Blog using any of the two methods. You can use any of those. The File upload method would be simpler.

  a. File Upload Method – Change the Verification method to Upload an HTML File. Ignore the file download and upload instructions provided there. Google will automatically download and upload that file for you. So just ignore the instructions and hit the Verify button. Your blog should get verified now. If it doesn’t then opt for the  second method (b)

  b. Meta Tag Verification method. Google will provide you a Meta Tag code which looks like
<meta name="google-site-verification" content="verificationkey" />
Copy this Code,  login to your Blogger Dashboard navigate to Layout >Edit HTML and place this code somewhere above </head> Save the template, come back to GWT and hit the verify button.

5. Once your blog is verified you can  add  sitemaps for your blog[From the Left Pane > Site Configuration > Sitemap].In the sitemap URL give the following URL as shown in this screenshot and click the Submit Sitemap button
atom.xml?redirect=false&max-results=500
 
If you have more than 500 posts on your blog, then add an additional sitemap URL
atom.xml?redirect=false&start-index=501&max-results=500
If your blog has more than 1000 posts, then add one more sitemap URL
atom.xml?redirect=false&start-index=1001&max-results=500
If it has more than 1500 posts, then add one more sitemap
atom.xml?redirect=false&start-index=1501&max-results=500
Continue this process depending upon the number of posts on your blog. So this means that you will be adding additional sitemaps for every 500 posts.
Once you have added the Sitemap, you can play around with the different other tools in GWT. It will provide you with a better analysis your site, show you the sites linking to you, help you in managing your site links and much more.



And if you liked this post, please consider sharing it. Thanks!

 Source:Internet

The importance of Google Webmaster Tools

Be The First To Comment
Let me tell you this: If you have not already used Google Webmaster Tools for your site(s), you have made a huge mistake. But it is not too late. You still have time.

Google Webmaster Tools is a service provided by the search engine giant Google that lets you manage your sites. It is complete free to use and it comes with several advantages.

First of all, you can easily submit your website's sitemap to Google search engine in few simple steps. This is very important as it makes it easier for Google to crawl your website and index your pages. The easier it is for Google, the better it is for you and your website.

Secondly, You can check your backlinks. One of the major factors for determining PageRank is number of backlinks so if you want to keep track of them, Google Webmaster Tools is a good place to do so.

Thirdly, you can also monitor your SERPs and your keywords so that you know which keywords is being ranked highest at Google and which ones are bringing you the most traffic.

Google Webmaster Tools is a really helpful service for webmasters. I highly recommend you to use it.


And if you liked this post, please consider sharing it. Thanks!


 Source:Internet

5 ways to be a successful blogger

Be The First To Comment
Few years ago, there were very few bloggers on the internet and take a look now. Blogging has turned into a trend, a sort of fashion that is almost mandatory for today's generation. Blogging can be of many forms such as a teenage writing a note on Facebook, a stay-at-home mom sharing food recipes, a 14 year old girl sharing her fashion sense and a 50 year old discussing finance to his fellow readers. Whatever the age, niche or purpose, every blogger wants some kind of appreciation for the amount of time he/she is dedicating to their blog. So how do you become a successful blogger? Lets find out!

5 ways to become a successful blogger
  1. Be subjective - blogs are not a place to demonstrate your objective side. Your viewers come to your blog to see what a common person like them thinks about a certain thing. They want your personal opinion, your own take on a matter.
  2. Do some reading - Don't just write about anything without doing some research first. Make sure to do your homework, before you publish a post. You don't want to anger your readers by posting inaccurate information.
  3. Stay in touch - A blog is a platform for discussions and arguments. Don't simply write posts and then forget about it. Read the comments and reply to them in a timely manner. It will keep your readers happy and can get you some regular readers.
  4. Listen carefully - Many times you will get requests from your readers to talk about a certain topic or to share some insight about some issue. If you want to be a successful blogger, you need to make sure that you meet these demands as much as possible.
  5. Talk to other bloggers - It's time to realize that you are not the only blogger in this universe. There are several of them like you and you need to connect with them. You need to read their blogs, comment on their articles and build cyber relationships. This can be easy for blogs on niche while difficult for others.
Folks, these very some quick tips about how to be a successful blogger. The list is not complete. Of course, you have to do a lot more stuff to succeed but these are some good starting tips that you should take into consideration.


And if you liked this post, please consider sharing it. Thanks!


 Source:Internet
 

© 2011 MoreForBlogger - Designed by Mukund | ToS | Privacy Policy | Sitemap

About Us | Contact Us | Write For Us