Friday, October 23, 2009

Add new page element to blogger header

This article give tutorial how to add page element under header in blogspot (blogger). Follow instructions in this article and you should have new page element under (or above) header page element in blogger design (Add and Arrange Page Elements) window. This new page element have exactly same length as header element.


First you can ask yourself, why I want new page element below or above blogger header? Most common answer is that blogger users want menu bar inside header. First step to have menu (or something else) inside blogger header is to add new page element (also called Gadget) under header Page Element which is explained in step by step manner in this short guide. In some cases reason can be to put adverts inside blogspot header.


We will illustrate how Page Element look like before and after new page element is added to blogger header.


Before:
There is only header element (TestDisplay)

Add Page element window before new widget is added to blogger header

After:
Add Page element window after new gadget is added to blogger header, now it is easy to add new page element beneath or above header element. Take attention to new "Add a Gadget" on the picture.

Add Page element window after new widget is added to blogger header


Steps to add new page element to blogger header

Go to Edit template:

  • Go to Layout

  • Click on Layout --> Edit HTML

    Edit blogger template

  • it is recommended (wise) to backup template on local hard disk before doing any change in edit template box


in Edit Template

  • find header-wrapper
    <div id='header-wrapper'> 
    <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>


  • for maxwidget replace 1 with 3

    • if maxwidget is 1 - there is only header and you can't add new gadget in Edit Layout window

    • if maxwidget greater then 1 (maxwidget > 1) - you can add new gadget for above or below header in Edit Layout window

  • you must replace showaddelement from no to yes

  • layout code for header-wrapper should look like this
    <div id='header-wrapper'> 
    <b:section class='header' id='header' maxwidgets='3' showaddelement='yes'>


Now it is simple to add anything inside a blogger header.
Example of adding text "Test" in the blogger header:

  • go to Layout --> Page Elements

  • Click Add a gadget above Header page element

  • choose text widget

  • in content enter TEST and click on Save button

  • drag and drop created gadget below header element

  • save this and view blog

    Example of blogger header with text gadget added below with text TEST

Of course, last example is just for demonstration purpose, you can add any gadget you want such us: links, HTML menu, AdSense advert...


Friday, October 16, 2009

Change background image in blogger

This article is a simple step by step guide how to change or add background image to your blogger blog. First it will be discussed how to add background image to blogspot header. In second section you can learn few tips and tricks about setting up background image for entire blogger blog. To apply those changes blogger template must be edited.


Change background image in blogger


First step is to go to Edit template:

  • Go to Layout

  • Click on Layout --> Edit HTML

    Edit blogger template

  • it is recommended (wise) to backup template on local hard disk before doing any change in edit template box



To change background header image find #header-wrapper attribute and enter URL of picture you want to be background in header inside url().


Example (tic tac template):
#header-wrapper {
margin: 0;
padding: 0;
font: $pagetitlefont;
background: #e0e0e0 url(http://www.blogblog.com/tictac_blue/titac.jpg) no-repeat $startSide top;
}

You can use some image which is already on the web. If image is on your personal computer you can upload it on the web. My advice is to use Google picasa web to upload pictures. After you upload image in Google Picasa, you can chose album, click on picture to open edit mode. Right click on image and click on "Copy Image Location" (in Firefox) and you have URL of image in clipboard. Now you can Paste this URL inside #header-wrapper to background attribute between brackets of url parameter. This is the way to put your image to header background.


Adjust image size

You can encounter problem that your image do not fit (it is too small or too big) to your header background. For background attribute image must fit or it will not be displayed properly. To adjust your image size you can use Windows Paint application (All Programs --> Accessories --> Paint). To adjust image with Paint open image in Paint application and adjust image size. Unfortunately it is possible to loss image resolution with this method.


Example of adjusting image from size 488x360 to 500x500 with Paint:

  • open image with Paint

  • click on Image --> Attributes to open Attributes window

  • enter desired width and height (in this example width is 500 and height is 500)

    Page attributes (how to change image width and height)

  • now your image is expanded with blank space

    Select image after resizing it in attributes window

  • You need to select image, click on the corner of selected area and resize to fit to new borders. There must not be empty space anymore

    Image in paint after expanding selected area

  • on the end we have image with specified width and height with some loss of resolution


In case background image is too small to fit in header you can use repeat property. With help of repeat property the background image will be repeated both vertically and horizontally.


Example of code for repeat image in blogger header:

#header-wrapper {
margin: 0;
padding: 0;
font: $pagetitlefont;
background: #e0e0e0 url(http://static-graphics.jupiterimages.com/stockphotos/572/1wm_tropical_055-thumb.jpg) repeat $startSide top;
}

Example preview of small image repeat in blogger header:

Repeat property for background image in blogger header


Simple method to change blogger header background image

There is a simpler method to change blogger header image through blogger interface but it is less flexible then method explained above.


Steps to change blogspot header picture:

  • go to Layout --> Page Elements

  • Click on Edit link for Header (in example Useful and interesting web ... ) in "Add and arrange page elements"

    Arrange blogger page elements, header

  • in Configure Header window chose you image from your computer or from the web

    Configure header popup window

  • there is very useful option, Shrink to fit, if you want your picture shrink to fit blogger header check this checkbox


Change or add background image for main area of blogger blog


To learn how to add or change background image for blog and few helpful tips about this topic read this section. To change background image you will have to edit blogger template. It is possible to choose one big image for background or to use repeat property. My advice is to use later. To manipulate background image for blogger content use #outer-wrapper attribute.


Blogger sample without background image

Blogger without header image

You need to go to Edit Template (for help see beginning of article) and find #outer-wrapper attribute Take attention to background property:

#outer-wrapper {
width: 1006px;
margin: 0px auto 0;
text-align: $startSide;
font: $bodyfont;
background: url() no-repeat scroll center center;
}


Blogger sample with one no repeat background image

Blogger with no-repeat one image in background

  • URL to background image is added to background property (inside url)

  • no-repeat - instructs the background-image will not be repeated

  • center center - position of background image

  • scroll - background image scrolls with the rest of the page


#outer-wrapper {
width: 1006px;
margin: 0px auto 0;
text-align: $startSide;
font: $bodyfont;
background: url(http://blog.d3r.com/wp-content/uploads/2009/03/d3r-wallpaper-jan09.jpg) no-repeat scroll center center;
}


Blogger example with vertical repeating image

This is a image for blogger background and it have only 1 Kb. With help of vertically repeat this image can be used for background of blog content window.


Vertical repeating image for background

On picture you can see two gray columns. Those columns are image above vertically repeated.


Blogger repeat-y image in background

  • repeat-y - background image will be repeated only vertically

  • 0,0 - position

  • with this method you can make your blog look nice without loading some huge image, this is reason why this method is recommended

#outer-wrapper {
width: 1006px;
margin: 0px auto 0;
text-align: $startSide;
font: $bodyfont;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidOcoaWNp9Z8z2ngFIQxkSJM1EqNKwNghLh-Ox4gR9rN_luJkoCqCanHVFE6c_CZXplQNmVXAZZoe85HmisgJQQxEIrF62-VY3N56kY2gRr1M2XRI78TAEK73wJqFe3EyZNaSvuZtpvFs/s720/tile_left_v2.GIF) repeat-y scroll 0 0;
}

Thursday, October 8, 2009

Unfollow twitter user who do not follow you back

How to unfollow twitter users who do not follow me back? Why to follow twitter users who not follow you and how to do it? In main twitter application there is no simple way to find users who do not follow you. You can inspect your twitter users one by one but it is time consuming process. And now you ask yourself what is a simplest way to extract twitter users who do not follow you? In this article you will find answer on this question.


You can get list of twitter followers who abandoned you on your email or find it with help of web twitter application and unfollow them.


Manage twitter users who do not follow me back


Your Twitter Karma - this excellent web application allows you to manage your followers and users who follow you. You can get list of all followers or all users you follow.


For every twitter user there is:

  • user name

  • user image

  • information does user follow you

  • information does you follow user

  • last user activity


Thanks to those information, you can make decision what to do with each user individually. You can check twitter users you want to make some action on them and decide what to do with them.
Possible actions are:

  • Bulk follow - follow all checked twitter users

  • Bulk unfollow - stop follow all checked users

  • Bulk block - block all checked users


Twitter karma

There is web application friendorfollow with similar functionality but in my opinion Your Twitter Karma is far better choice.


Track twitter users who stop follow you back


NutshellMail - allow you to get mail summary for twitter every day (you can chose how often you would like to receive summary).


In this summary you get:

  • New Followers

  • New quitters

  • Send Tweets

  • Direct Messages,Retweets and @Replies

New quitters are twitter users who stop following you. This is the way to actively tracking your twitter account. With NutshellMail you can track and other social services such as facebook and Myspace.

Monday, October 5, 2009

Google search operators and SEO

Do you know you can use Google search operators to gather useful information for Search Engine Optimization (SEO). Google search operators allows you to pull out specific data from google search engine. In this article you can find most useful google search operators with examples and explanations for SEO.


What are google search operators?


Google search operators also called advanced operators are query words that have special meaning to Google. Google search operators allows advanced functionality of Google’s Advanced Search Form in a regular search box query. Some of google search operators are site: inanchor:, inurl:, intext:, intitle: ...


Discover pages on the site indexed by Google


site: operator

site: operator in your query will restrict your search results to the site you specify.


Example:

  • site:interestingwebs.blogspot.com

    returns all web pages indexed by Google on interestingwebs.blogspot.com


  • site:interestingwebs.blogspot.com tips

    return all web pages indexed by Google on interestingwebs.blogspot.com with keyword "tips"


SEO usage: with site: operator you can find which web pages on the selected site are indexed by google. Not indexed web pages does not appear in search result page.


Results by anchor text


allinanchor: operator

allinanchor: operator return results containing query terms specified in the anchor text on links to the page. Anchor text is clickable text part of a hyperlink.


Example:

  • allinanchor:interesting webs

    returns all web pages which have terms "interesting" and "web" in anchor text. Result Selina's Wing Blog have one anchor text "interesting webs" and it is a reason why it is in resutls


SEO usage: number of returned results with allinanchor: operator is used by some SEO experts. Number of returned results with allinanchor: operator can be compared to number of google searches for chosen search terms. To find number of google searches use Google adwords: Keyword tool. Smaller number of returned results with allinanchor:, less competition for chosen keywords and better chance to succeed (but don't forget to include number of google searches in formula).


Search title only


intitle: operator

intitle: operator returns all web pages which have query term in title


Example:
  • intitle:SEO

    return all web pages with keyword "SEO" inside tag title


  • expert intitle:SEO

    return all web pages with "SEO" in title and keyword "expert" anywhere in the document


SEO usage: The title tag is a very important part of SEO. With this operator you can estimate the approximate number of competitors for specific keyword.


Search URL


allinurl: operator

allinurl: operator search tells Google to return web pages that have query terms inside URL. The searched term can be in the domain name or in the filename.


Example:
  • allinurl:SEO expert

    return web pages containig keywords "SEO" and "expert" inside URL


SEO usage:text inside URL are very influential in SEO, so it is imperative to find more information about competition.



Further information and resources:

List of all google operators
8 Google Advanced Search Operators for SEO

Saturday, October 3, 2009

Force google reindex of site

You want to google reindex your web site as soon as possible? In this artcile you can found how google works, how do you know did google indexed your web page, how often does google reindex, how to tell google to (re)index your web page or site.


How google works


Googlebot is a web crawler that finds and crawl web pages. Googlebot sending a request to a web server for a specific web page, downloading the entire page, then handing it off to Google’s indexer. It request many different web pages simultaneously. When Googlebot fetches a web page, it collect all the hyperlinks appearing on the page and adds them to a queue for subsequent crawling. Those hyperlinks are crawled later, and hyperlinks from those pages are collected too. This technique is called deep crawling. Deep crawling allows Googlebot to probe deep within individual web sites.


Googlebot gives the indexer the full text of the web pages it finds. These pages are stored in Google’s index database. When user submit a query to Google Google's index database is used to return best web pages in google's result page.


How to know did Google indexed web page



To check did google (re)index a web page use "site:" search operator:
  • site:[URLOfWebPage]


Examples for checking did google re(index) a web site:
  • site:interestingwebs.blogspot.com

  • this Google query will return all pages on interestingwebs site which are indexed

  • in case you can't find some web page in result list, it can be concluded that this page is not indexed


Examples for checking did google re(index) a web page:
  • site:http://interestingwebs.blogspot.com/2009/06/tips-for-html-link-code.html

    Example of using Google site search operator

  • in case google return result you know web page is indexed

  • with this method you know if page is reindex only if title of web page is changed, for example if I changed title to "HTML code tips" and Google return "Tips for HTML code" I can know that web page is not yet reindexed (yet)

How often does google crawl


It depends on the web page. Some pages be crawled every hour, some pages every day and some pages every few weeks or months. Generally if it is consistently adding new content to web site or page have a lot of backlinks (links pointing to web page) google crawler will probably come back more often. Google don't index sites, Google index pages. So on same site one page can be crawled on daily basis while other on can be crawled once in the month. If you submit sitemaps regularly you can most likely speed up the Google crawling for your site.


Force google to reindex site


You can add your url on Google add url page and wait. When your URL is submitted, it is in google queue and google will index your site when it find appropriate. Unfortunately you can't force Google to crawl your site now and index the content.


Google add url web page

Saturday, September 26, 2009

What is twittering and best twitter apps

What is twittering?
Twitter is a free social networking and micro-blogging service that enables its users to send (twittering) and read messages known as tweets. Tweets are text-based posts of up to 140 characters in length. Updates (tweets) are displayed on the user's profile page and delivered to other users who have signed up to receive them. Twitter is often described as the "SMS of Internet".


Twittering example


  • Twitter user BlogAndSEO tweet message "Just write article about twittering"


  • when twitter user BlogAndSEO click on button update message is published (tweeted) and all 20 followers of user BlogAndSEO will see his message (tweet)

    Tweet a new message to twitter


  • Now, all followers see a new message, more followers more people see this message


Retweet - what it is and how to retweet



The retweet ("RT") allows Twitter users to share the best links, and tweets they find from others.



  • 20 people see message of user BlogAndSEO because he have 20 followers, but in case one of the twitter followers retweet this message, let's say user the_gman all of the_gman followers will see BlogAndSEO's message, and hey, the_gman have 92521 followers!!!

  • the_gman send this message : "RT @BlogAndSEO: Just write article about twittering"

  • Twitter user BlogAndSEO benefit from retweet because the_gman have many followers

Short guide how to retweet

RT @OriginalPoster: RetweetedMessage


Retweet example
RT @BlogAndSEO: Just write article about twittering



How to know you have been retweeted


Go to web address http://www.retweetist.com/users/. Enter the user name and you will get last 30 day retweets for entered twitter user. This is how you can track your retweets.


Retweets web application

Manage twitter followers


Twitter followers are twitter users who follow your messages. One of the methods to increase number of twitter followers is to follow other twitter users. Because you follow twitter user there is a chance that he will follow you back, specially if you share common interest with him.


To find and follow twitter users by tag use : wefollow application.
Enter tag and you will get twitter users who have most followers and twittering about chosen tag.


Twubble - can help expand number of people you follow — it searches twitter friend graph and picks out people who you may like to follow


Mycleenr - sort twitter friends by time of their last tweets. It can be used to easily delete inactive users from friend (following) list


Just Tweet It - directories with twitter users, very useful. You can add yourself to one of this directories to get more followers. You can find Twitter Tools Directory also.


Twitter buttons - if you have your own web site or blog you can put a twitter button which link on your twitter account. This is one more way to get more twitter followers. On site Twitter buttons you can find some interesting twitter buttons.


Tweeting links


You want to put hyperlink in tweet. Don't worry, it is enough to write URL and twitter will automatically convert it to linkable short URL.


Example:
Text entered in twitter:

just write new article about making your own strip http://interestingwebs.blogspot.com/2009/09/make-your-own-comic-strip-online.html

Posted twitter message:

just write new article about making your own strip http://bit.ly/17K9F1

For those who want more control with links in tweets I suggest tinyURL web site.


This is useful in case:
  • you want to write fully 140 character tweet and don't have enough space, make tiny URL before posting tweet and save space for more text

  • you want decide to how you tiny URL text will look like (for example http://tinyurl.com/comicweb for original url http://interestingwebs.blogspot.com/2009/09/make-your-own-comic-strip-online.html)

Twitter hashtags


The twitter hashtag is used to designate topics or categories of information in tweet. A hashtag is a way for others to find information about your keywords even if they are not following you.


Format for hashtag: #WORD
Hashtag example: #blogspot

When you have tweet with hashtag, twitter users can click on hashtag (it is linkable) word and see last tweets which have this hashtag. For example if you click on this #blogspot hashtag you will find last real-time tweet results containing #blogspot hashtag.

Wednesday, September 16, 2009

Oes Tsetnoc - Seo Contest

Oes Tsetnoc - what it is? Accidentally I came on one blog with this title and learned, Oes Tsetnoc is Seo Contest in reverse order.


The Targeted Key Phrase for this SEO Contest is:
  • Oes Tsetnoc

Winner is a person who will be first in Google Google's organic SERPs for the targeted keyword Oes Tsetnoc. The main prize is a $1,000.00 Cash. For 2nd Place prize is $300.00 and for 3rd place prize is $200.00. The contest starts on September 10, 2009 and ends on December 15, 2009. Maybe is not too late to catch the train!!!



More information about Oes Tsetnoc contest and how to sign in find on promojunkie web page



Oes Tsetnoc - 16/09/2009 - Beggining


First, I will try register to Oes Tsetnoc competition (if it is not too late). Later, I will inform you what is going on.




Oes Tsetnoc - 17/09/2009 - Few tips



I haven't get notification from Oes Tsetnoc that I am joined in contest. Still waiting...
Good news, Google is indexed my Oes Tsetnoc web page and my position today is 16th.


Oes Tsetnoc statistics can be seen here using the following search string: http://www.google.com/search?num=100&hl=en&q=oes+tsetnoc&btnG=Search


My approach is that Oes Tsetnoc keywords are first two words in title (keyword prominence). Those keywords you can find in URL of page too, http://interestingwebs.blogspot.com/2009/09/oes-tsetnoc-seo-contest.html. Keywords in URL can be very important in google ranking search result page. And "Oes Tsetnoc" keywords are repeated in article which is important for keyword density.



Oes Tsetnoc - 18/09/2009 - Link building I



Today I promote Oes Tsetnoc post through Digg, Delicious and StumbleUpon. My mission is to get more backlins. I tried to find web sites who are interested to link my post in exchange to bi mentioned in list bellow.


There is a list of Oes Tsetnoc competitors who agree to link this post:


If you want to be in this list, leave a oes tsetnoc backlink in your blog, leave a comment in this post to inform me and I will link you back.



My position today is 17th in google search result page for term "oes tsetnoc". No response from promojunkie about registration to oes tsetnoc contest



Oes Tsetnoc - 19/09/2009 - Registering



Finally I found myself in promojunkie result page. Now, I am officially competitor. My position drop down on 19th position.



Oes Tsetnoc - 19/09/2009 - Down, down, down



My rank in Oes Tsetnoc contest is rapidly falling down. Now my position is 71st place. Why?


I believe it is a result of my SEO (de)optimization day before. Probably Google algorithm recognize SEO change as unwanted.
What to do?
First, I will sit down and cry for few hours. Then, my intention is to wait a few day and track position in Google SERP. If page position will not go up, I will undone my yesterday action, and see what is going to happen.



Oes Tsetnoc - 25/09/2009 - Bottom



In this moment this page is very low, below 400th position for Oes Tsetnoc term. Hardly position can be worst. Today, I undone my optimization done week ago.


Firstly, my optimization was to surround every oes tsetnoc words with <span> and </span> tags. It appears to be bad SEO optimization. We will see if better ranking will come.



Backlink : Webmaster Forum

Monday, September 7, 2009

Make your own comic strip online

Do you know that you can easily make your own comic on web. And you don't need to be artist. There is a strip generator on web. You can use made characters and just dragging those characters in your strip or make your own characters. You can add bubbles with text inside it (speech balloons), different objects and shapes.

stripgenerator.com is very funny and easy to use. I believe that stripgenerator is one of the best comic generators on web. My rate is excellent. Try and see!

Let's see a comic I maked in 15 minutes:



Make a strip

What can be done with strip generator


  • use existing drawings of humans, beings, objects, shapes and bubbles


  • easy drag end drop of existing objects to strip


  • add speech balloons and enter your text


  • change size and rotating existing objects


  • add and remove frames


  • generate a custom character


  • embedding comics in other web pages


  • searh strip gallery...



Guide to make your own strip (comic book) online


  • go on stripgenerator.com


  • click on "Create strip"


  • drag & drop objects in frames and make your own comic


  • you can use character generator to create your custom made characters

    Character generator on strip generator


  • you can embed strip with copy & paste code in embed text box

On stripgenerator page you can publish your strip blog, leave messages on their forum, search last strip blogs...

Wednesday, September 2, 2009

No tooltip bug in Firefox 3.5

After upgrading firefox to 3.5.2 version I noticed that there is no tooltips. Tooltips are missing and instead of missing tooltip there was small white rectangle cursor box. I found solution for this problem with a help of google.


It is no tooltip bug (or blank tooltip bug) in Firefox 3.5. Solution is to uninstall and reinstall the latest version of Google toolbar for Firefox. To be sure that problem is in Google Toolbar try to start Firefox in safe mode. If Firefox in safe mode properly display tootips then source of problem is in one of the add-ons (probably Google Toolbar for Firefox)


To uninstall Google toolbar for Firefox click Tools-->Add-ons, choose on Google toolbar and click Uninstall


Uninstall google toolbar

This article refer to no tooltip bug or blank tooltip bug in Firefox 3.5.