Showing posts with label Blogger Tips. Show all posts
Showing posts with label Blogger Tips. Show all posts

Adding Favicon icon to Blogger URL

Have you wondered how these little icons appear next to the web addresses, like the one you see above? When you visit the sites or bookmark them, these icons will make these URLs stand out. These are “Favicons” or “Favorite Icons”.

You would first need to have an icon which you would like to use, bearing the extension .ico format. If you search your hard disk, you might find some icons which are generic. I would suggest that you create one to represent your own unique identity. There are quite a number of free icon editor software which you can download from the net.

As for myself, I went to Download.com site and downloaded a very small program called Imagicon which can transform images into .ico format. I created an image using Photoshop. You can use any image or pictures if you do not wish to create one. Next, run the program. It is rather simple to use. While you can create icons in 2 sizes – 16x16 and 32x32 – I would think a 16x16 icon is preferable since it is readable in most older browsers.

If you do not wish to download any software, you may also try creating an icon online. Just enter the keywords “online icon generator” into your Google search bar, and you should be able to find several programs that you can try.


Once you have created an icon, save it into your hard disk. The next step of attaching the icon is a little tricky. Ideally, all you need to do is to save it in the root directory of your blog site. Nevertheless, there is no way this can be done. For one, if you try to upload an icon image, Blogger will reject it. Two, any file that is uploaded will not go into the Blogger root directory.

The only method to use will be to upload the icon into some web folder, and create a link. You can read about using free hosts like Google Page Creator and Google Groups. We have also a rather comprehensive list of free Image Hosts and File Hosting Services in our article on Manage Blogger Image Storage Space. Check out those sites and choose one that is fast, reliable and allows uploading of .ico files.

Once you have done that, take note of the URL of your icon. If you are using Google Page Creator, hovering your mouse over the link, you will see that the file is stored under a directory which looks like thishttp://yourname.googlepages.com/iconname.ico
where “yourname” is your Gmail account name, and “iconname” is the file name. Copy this URL.

Go back to your Blogger dashboard and under the Template tab, go to “Edit HTML”. Near the top you will see a line like this:-

<title><data:blog.pageTitle/></title>


Update:

Copy and insert the following code below the line:-

<link href='URL of your icon file' rel='shortcut icon' type='image/vnd.microsoft.icon'/>


Inserting this will also work but the former is preferred:-

<link href='URL of your icon file' rel='shortcut icon' type='image/x-icon'/>


Remember to type in the “URL of your icon file”.

Save the template. When you refresh your blog site, you should see your nice little Favicon next to the blog address.

Other image types

The .ico image format has been used by many but you can also create an image under the .png or .gif format. Ensure that the size of the image is either 16x16 pixels or 32x32 pixels. 

If you have a PNG format image, the link to insert is:-

<link href='URL of your icon file' rel='shortcut icon' type='image/png'/>


If it is a GIF format image, the link is:-

<link href='URL of your icon file' rel='shortcut icon' type='image/gif'/>


External Domain

For those who have hosted sites in external domains, insert the link in the root directory as well. Otherwise, you can upload the file into the root directory and name it favicon.ico

As an example, if your domain name is www.domain.com, the URL of the favicon will be www.domain.com/favicon.ico

This method is not preferred but a number of browser versions are able to process the icon. Since we do not have external domains to try out this alternative, you may want to see if it works for you.

Compatibility

While you can see the Favicon in Mozilla Firefox, many have problems seeing the Favicon in Internet Explorer. This is a known problem and has been a sore point with many IE users. In some versions of IE, bookmarking the site will display the Favicon. This is not necessarily so in IE7 that we are using. In fact, when we bookmarked the highly popular search engine sites, their Favicons don't show in our IE bookmarks too although they show well in Firefox. Perhaps this is one more reason to download Mozilla Firefox if you have not already done so.

Enter your email address:


Delivered by FeedBurner
                                                                          

How To: Use robots.txt File Efficiently for SEO

Web robots are also known as WWW robots or Internet bots, which are automatic program used to analysis, crawl and index the website in search engine. Web crawling is the process of create a copy of webpages and index in search engine. This web robots will first checks the website’srobots.txt file, each and every site have its own robots.txt file.
 
User-agent: the robot the following rule applies to
Disallow: the URL you want to block

 User-agents
Note: / is the directory, which contains all the files of website. (slash) / is also called as root directory.
  • To block the entire site
    Disallow: /

  • To block the entire site for all search engine.
    User-agent: *
    Disallow: /

  • To block the entire site for only particular search engine.
    User-agent: Googlebot
    Disallow: /

  • To block a directory and its content
    Disallow: /junk-directory/

  • To block a page
    Disallow: /private_file.html

  • To remove a specific image from Google search
    User-agent: Googlebot-Image
    Disallow: /images/tobby.jpg

  • To remove all images from Google Image Search
    User-agent: Googlebot-Image
    Disallow: /

  • To block files of a specific file type (for example, .gif)
    User-agent: Googlebot
    Disallow: /*.gif$
All gif format files will be blocked and it will not be indexed in google search.

  • Google adsenseworks based on website crawling( ads will display based on site content). This makes the web page from search results, but keep the mediapartners-google to crawl the site for displaying ads.
    User-agent: Mediapartners-Google
    Allow: /

Enter your email address:


Delivered by FeedBurner
                                                                          

Robots.txt uploading tips for blogger

The robots.txt file is used to control the crawlers activity on a website/blog. It will help you to keep some directories away from crawling while allowing some. For example if yu have two folders 1.Articles and 2.Javascripts – and if you wish to exclude Javascripts from crawling by robots, then you can command it on the robots.txt file.
A few basics about what the robots.txt file is -
- It is found in the root folder, Ex:-www.google.com/robots.txt
- It’s a text file and can be edited
- It is used to command the robots what to crawl and what not
- It is used to help the crawlers locate the sitemap on your site
If you are on blogger platform, then you can’t upload the robots.txt file. Panic not – there is another option which you can utilize. I’ll discuss it towards the end of this article. First let’s discuss a normal robots.txt implementation on a hosted site.
Specifying a sitemap with the Robots.txt file
Due to the recent agreement with the major search engines, they have come up with a common command that they will follow to detect sitemaps from robots.txt file. The command is –
Sitemap: Sitemap url here
Robots.txt for Blogger users.
Blogger users cannot upload the robots.txt file instead, they can use the robots meta tag to control the crawling of bots on particular files.
These codes should be included in the HEAD section of the particular page template.(Enclosed in arrow brackets)
META NAME=”ROBOTS” CONTENT=”NOINDEX”
This command will not index the current page in which this code is included.
META NAME=”ROBOTS” CONTENT=”NOFOLLOW”
This command will not follow/parse the links present on the particular page where this code is present in the head section.Blogger users can use this option to their advantage when making posts.If you want every new page to be crawled by the bots, include the following code to head section of your blogger template.
meta name=”robots” content=”index, follow”
Happy driving the robots. icon smile

Enter your email address:


Delivered by FeedBurner
                                                                          

Hitman Reborn Widget - Hitman Reborn Flash Clock

A new Reborn Clock. This is a simple design. We hope his fans will like it. Click "Read More" to get the codes.




Please comment. Feel free to use the flash clock, just remember to link back to Anime Widget.

Top 10 Social Network Sites And How To Use

 There is no little doubt that social media promoting has taken the lead in promoting on-line ways. Social media sites have exploded and still grow in range and recognition. If you own an internet business, it will be terribly troublesome to understand where to start during this in depth promoting arena.

   There are dozens and dozens of social sites and a lot of shooting up all the time. I actually have compiled the top 10 best social sites with that to urge you started. I actually have chosen these sites by my very own skilled opinion and by actual popularity.

1.  Google+ 
   Google+ is one in every of the newer social sites, however it already has an estimated upto sixty five million users. I actually have done abundant with Google+ as I do just like the format and flexibility of the location. Make sure to feature the +1 Google feature to your web website / blogs thus individuals will click it to indicate they like your site. This can assist you within the ratings. Again, make sure to finish your profile and pay time daily or a minimum of weekly on your Google+ page.
2. Twitter
  Twitter has two hundred million estimated active users. I favor Twitter as a result of it's fast, simple and effective for promoting your business. You just add tidbits of knowledge, new product information, sales and links, motivational quotes, etc and tweet. Keep your tweets skilled and useful to your followers. Do not tweet things like what you are having for dinner or what movie you only watched. get entangled with alternative tweeters and participate.

3.Facebook
   Facebook has an estimated 850 million users! this can be the foremost in style social website and my favorite also. Facebook is extremely versatile in what you'll do together with your page. make sure to open a business account and conjointly scan the principles for businesses. Fill out your profile utterly. Add pictures and videos to your page to form it a lot of fascinating and interactive. Visit your page daily and post useful info, links and resources. Answer all comments promptly.


4. LinkedIn 
   LinkedIn currently has over one hundred fifty million estimated users. The factor i favor regarding LinkedIn is how you'll participate in teams that interest you or can profit your business. Be a part of teams and make sure to participate within the discussions by providing real and useful info and recommendation. Follow up their tips on the way to utterly and effectively fill out your profile.
5. Pinterest 
   With over ten million active users, pinterest.com is growing in popularity terribly quickly. Pinterest has come back up with one thing to a small degree completely different. You're given a pin board to feature visual things like photos, graphs, videos, etc. Pinning useful visual info could be a good way to draw in individuals to your pin board. You'll add comments also. Individuals respond a lot of to visual things than simply words thus recover from to Pinterest and begin pinning.
6.  YouTube 
    YouTube has an estimated three hundred million users. YouTube could be a video sharing website. Creating resultive promoting video to share on YouTube will have a dramatic effect on your website traffic. Show your experience with tutorial and informational videos. you'll conjointly gift slide shows to plug your merchandise and services. Came upon an account and begin uploading those business growing videos.


7. StumbleUpon
   Despite a "stumble" in growth, StumbleUpon is currently growing in popularity and has an estimated twenty million users. StumbleUpon could be a social website that enables the users to share fascinating and useful websites and to get immediate traffic. You may have to be compelled to be a lively user to reap the advantages from this website.


8.  Technorati.
 The leading blog search engine and directory, Technorati.com indexes over 1,000,000 blogs. The positioning has become the definitive supply for the highest stories, opinions, photos and videos rising across news, entertainment, technology, lifestyle, sports, politics and business. Technorati.com tracks not solely the authority and influence of blogs, however conjointly the foremost comprehensive and current index of whom and what's most well-liked within the Blogosphere.

9. Buzznet 
This is an area where bands, musicians, photographers, fashion bloggers, writers, artists and popular culture addicts share content and have their creativity showcased.
Music: Band gossip, interviews, tour diaries, music news, album reviews, video premieres and fan clubs regarding your favorite bands from Buzznet's biggest music fans.
Fashion: Designers, fashion addicts, bloggers, stylists, makeup artists, DIY, vintage freaks, crafternooners and fans come back here for ALL THINGS FASHION. 
Photography: examine live band photography by Buzznet's most gifted photographers further as fashion, nature, lifestyle and portrait photography from everywhere the planet.
Galleries: Scroll through beautiful galleries of your favorite bands and celebrities.
Groups: be part of one in every of the 1200 completely different teams on Buzznet and find concerned.10. Blogs 
 Blogs are very fashionable social sites and there are legion them. Look for blogs that focus on your niche and become active with guest posts, comments, etc. Collaborating on blogs will assist you create connections and acquire traffic you would possibly not have gotten. Also, if you are doing not have your blog nevertheless, make sure to urge started. I might suggest Blogger or Wordpress, however there are alternative blog services on the internet like web.com and weebly.com and much more.

If you're a business or a a website owner, you actually cannot avoid social media during this promoting age. Thus instead of ignore it, you would like to check it, learn it and participate in it. Once you are doing, you may notice it to be a really enjoyable and useful expertise.

If you would like to find or follow me on  the above sites, simply click on the site name and fine me. If you need any help, please do not hesitate to call on me for any clarifications by using the comments box.

Multi Games Blogger Templete

MultiGames

Milti Games Blogger template
                  
  • 3 column, left and right sidebar, Header image, Slide Show.
  • Fixed width, top menu, adapted from WordPress, social icon.
  • Excellent blogger layout for games blogs.

How to Add Bookmark Us Hyperlink to Blogger Blogs

For your website to have traffic, people should remember your site and visit again. This problem was solved long time ago with browser's Bookmarks. Still, people are lazy and usually are not using it, unless you remind them. so you can add a quick "Bookmark this page" link in all your pages. Clicking on the link prompts the user with a dialog box to add the specified URL to the Favorites list. 

Login To Blogger Go To > Design > Edit HTML.

and mark the tick box "Expand Widget Templates"

Then, find (CTRL+F) this code in the template. 

</head>
And immediately before it, paste this code:
<script src='http://yourjavascript.com/0514111300/bookmark_this_page_royaltutor_net.js' style='text/javascript'/>
Now click Save Template.

Then, Go To > Design > Page Elements.

Simply add a Gadget of HTML/JavaScript type and add the code given below
<a href="javascript:bookmarksite('WEBSITE NAME GOES HERE', 'URL GOES HERE')">Bookmark This Site</a>
and to change the text to image / button , we should replace the word Bookmark This Site in the code with the following 
<img src="URL-OF-BOOKMARK-BUTTON"/>
Finally save your template and you are done!

How to upload Blogger XML templates



  • Download your favorite Blogger XML template to your computer. If the template is contained in a zip file, ensure you have extracted the XML template.
  • Log in to your Blogger dashboard and go to Design> Edit HTML
 It’s best that your backup your old template (just in case any thing goes wrong), by clicking on the “Download Full Template” link and then save the file to your hard disk drive.


Once you have created a back up, upload the new template by clicking the ‘Browse’ button (1). Select the file’s source and click ‘Upload’ (2),

If you see the following warning:


Click “keep widgets“.

After the upload is complete , you can either which to preview your template or click on the ‘Save Template’ button to start using it.

Download Jaxe V.3.4 For Windows

Jaxe is an open-source Java XML editor. It is designed to help developers (or advanced users) create a simple end-user interface for a given document-oriented XML language. Examples include XML schemas, XHTML strict, Docbook and DITA.
What's New
Version 3.4:

    Configurable with an XML schema and a configuration file for the graphical user interface.
    Adapted to structured narrative XML documents.
    Validation at elements insertion.
    Multi-platform (Java 1.5+).
    Free open-source software.
    Possible addition of Java modules to add customized graphical interfaces.
    HTML preview with an XSLT stylesheet.
    Exports to more...

Download Jaxe V.3.4 For Windows

Free Web Hosting - Blog Cloud Hosting


banner 300x143 Free Blog Cloud Hosting   Full cPanel Cloud Web Hosting
Many people and institutions keep on providing free hosting services now and then but we present to you only those which are noteworthy and thus worth giving a shot.
As claimed,NZCLOUDHOSTING is giving away a few free cloud hosting accounts to get the word out of our services.Hosted on Cloud Hosting Server Systems in the US.
Here is What they are giving away?
cPanel Hosting account with -
  • 1GB of Disk space
  • 5GB of Bandwidth
  • Unlimited MySQL Databases
  • Unlimited Email accounts
  • Unlimited FTP Accounts
  • Fantastico + Sitebuilder
  • 10 sub domains
  • 24/7 Professional Support- Internet & Telephone- Tier 1 Linux Hosting Server Systems – Carrier Class Hosting Server systems – 99.9% Uptime Policy
    - cPanel Web Hosting Control Panel included ( Very user-friendly! )
    - Manage your files, Monitor web statistics, Setup email addresses, Webmail + More!
    - SiteBuilder – Build your own website, Simply running in minutes!

Choosing a Good Domain Name

A domain can not only drive traffic to your website, it can also become the name that people remember when they think of a certain product or idea. It can go on to become a recognized brand and make a lot of money for the person that owns it. However, the truth is that, domain can play a critical role in your website’s success. But how do you pick a good domain name when all of the good ones are already taken? There are thousands of web sites, and every time you think of a good domain name for your own web site, it winds up being taken, or too close to someone else’s.

So far more than 100 million domains have been registered, and the process will not be stopping any time soon. Finding good domain names is going to get more difficult as the days go by. Some of the steps to help you get a domain are discussed here.

If you are wondering about the techniques that will help you to identify good domain names, read on.

They are simple and short

It is a known fact that people tend to remember things that are simple and short. Good domain names are short. Always select a short domain name for your website. Domain name should be less than 15 characters. As for the number of words, one-word domains are gold, two-word ones are good, three-word domains are average, and above that it is usually a bad idea.

Quotes.com is a superb domain and probably worth millions of dollars. ProQuotes.com is a good two-word domain worth thousands of dollars. ProQuotesNow.com is an average domain and could be used for a website. YourProQuotesNow.com is plain worthless.

They are easy to remember

Most users do not have the time to bookmark sites. They just memorize the domains of their favorite websites and type them whenever they want to visit one. If your domain is complex and not easy to remember you will lose these visitors along the way. Using a complicated domain name can interfere with the user’s desire to memorize the name.

Brcwr.com is a short domain name, but is not easy to remember at all, so it would be a bad idea to use it for your website (unless the initials represent the name of the website or a memorable message.

They have Easy Spellings

Your domain name should not contain words that are difficult to spell. Using words that have complicated spellings can result in the user landing in some other site. To simplify the user experience, do not use unknown foreign words or those that have complicated pronunciation.

CappuccinoBar.com might be problematic for English speaking visitors. Cappuccino is an Italian word, and not everyone is aware where the doubles are placed.


They have a .com extension

A .com domain extension enjoys the maximum popularity in the world. Additionally, most people have the tendency to remember this domain extension. Except in special cases, using .com domain extension can be a great idea. A simple and memorable domain name can enhance your site traffic greatly. Therefore, before deciding about a domain name, pay attention to all these factors.

They don’t contain hyphens or numbers

You should avoid hyphenated (-) domain name. If confuse to visitors that where hyphen sign used. Hyphen sign becomes domain name complex and domain name not easily memorable. They suffer the same problem of domains not using a .com extension or with complex spelling.

They are descriptive

Many visitors will come to your site through the search engines and via direct links on other websites. That is, they will come if the domain that they will see will be appealing. Having a descriptive domain name will give visitors an idea of what your site is about even before they enter it. If related keywords are present in the domain it might also help your search engine rankings.

Final remark


The most important thing to remember when choosing a domain is to make sure you pick one that is going to be reflective of you for the next several years.



How to change a blogger template


Personally I feel three column blogger templates are better and I have mentioned resources for free blogger templates in my earlier post free-blogger-templates-resources

So you may want to change your blogger blog template to a better professional looking template and here is guide for it.

To change blog template please follow the following steps

Steps for installing default blogger templates

1) After login to your blogger account go to

Dashboard > Layout > Pick new template

Then you can choose from available templates on blogger.com and click Save template.
You need to save widgets before doing this as mentioned below.

Steps for installing third party blogger templates

1) Suppose you want to install some other third party template which is not on blogger website.
Then you can download the template you like from the website and can save that template on your hard drive .
2) Then you need to backup your original template first. For this from Dashboard go to > Layout > Edit HTML > Download full template > choose save to disk and save it on your hard disk.
This backup is helpful if anything goes wrong with new template.

3) Now when we change template , the widgets are lost .Widgets are your added page elements like visitors counter , html script , link list etc. So you need to download code of each widget properly name it and save it with notepad as a text file. To copy code of each widget you need to go to Page elements then edit and you can view the code of respective page element which you can copy and then paste in Notepad.

4) Now go to Dashboard > Layout > Edit HTML > Browse
Choose saved template from your hard disk and click Upload.
This will give you warning for widgets to be deleted.
Then you can continue with save template.
Your new template is installed , so view your blog and check it

5) Now start installing each widgets you have saved earlier by going to Page Elements > Add a Gadget.

Hope this post is useful and works out.

How to install a WordPress theme

Okay, you already know how to install the latest version of WordPress and want to switch away from the default WordPress theme look, but have no idea how to do it? Here’s the tutorial for you, complete with screenshots so even a beginner can easily follow along. With this three-step tutorial you’ll have a new blog theme ready in no time.

There are a few automated ways to do this, but like our previous tutorial, we will be focusing on manual WordPress theme installation only. This tutorial assumes you already have WordPress installed on your host. It also assumes you are installing a “normal” theme, i.e. no advanced functionality that would require additional plugins or configuration.


Step 1: Download your theme of choice
Unfortunately WordPress can’t read minds, so you’ll have to pick out the theme you want to use. Call me biased, but some of the templates on our free WordPress themes page are quite nice. For this tutorial we’ll choose the Blue Green theme. Click the download link, and save the .zip file to your hard drive.
WordPress Theme Zip Screenshot

Extract the /blue-green/ folder only. All you have to do with Readme.txt is read it (which is why it’s called a readme file) and isn’t needed for the next step – uploading the theme to WordPress.

Step 2: Upload the theme directory to WordPress
Seems simple enough, right? It really is, if you know where to upload it. Use an FTP client such as FileZilla to connect to your hosting account. Navigate to where WordPress is installed and locate the /wp-content/themes/ directory. Upload the /blue-green/ directory it. After you’re done, it should look something like this.

Uploaded Theme Screenshot

The hard part is now out of the way. The next and final step is to activate the theme within your WordPress admin panel.

Step 3: Activate the theme within your WordPress admin panel
Login to your WordPress admin panel, and navigate to the Presentation tab. You should now be at a screen that looks like this.
WordPress Theme Menu

Wow, look, you can already see the Blue Green screenshot below! WordPress reads the directory and searches for the screenshot image and stylesheet within it. Simply click on it, and your theme is activated.
Congratulations!  Theme installed.

That wasn’t so bad was it? WordPress makes it simple like that. If you still need help, feel free to ask in our general support forum for assistance. Feel free to leave a comment or subscribe to our feed if you liked this tutorial.

 

Backlinks

Followers

Visitors stats

Support : Softwares And Tips | Best PTC Sites | Free Premium Accounts
Copyright © 2013. Softwares And Tips - All Rights Reserved
Template Modify by Best PTC Sites
Proudly powered by Blogger