To view this, you need to install the Flash Player 7. Please go to here and download it.

» average time of 00:00 on google analytics  

Category: google tips and tricks | May 25th, 2010

The way that Google Analytics calculates average time on site is by subtracting the timestamps between the first and the last pageview of a visit. If a visitor to your site bounced, they by definition only had one pageview. Therefore it is impossible to calculate an average time on site for visitors that bounced because they did not have a second pageview. There is no way for Google Analytics to know exactly when a visitor left the site since no information is sent back to GA when the visitor closes their browser or navigates to a different site.

In the case a of a bounce, GA assigns a time on site of 0 seconds and then averages that in with the time on site for all other visitors that did not bounce to calculate an average time on the site.

» 301 .htaccess redirect subdomain to domain  

Category: htaccess | November 23rd, 2009

301 .htaccess redirect subdomain to domain

RewriteCond %{HTTP_HOST} www.subdomain.example.com$ [NC]
RewriteRule (.*) http://subdomain.example.com/ [R=301,L]

» how to get rid / hide the value of a submit button with CSS  

Category: CSS & Html | November 20th, 2009

having no control with an embedded form.
this is some examples to get rid / hide the value of a submit button with CSS, hide the text on the button so all you see is the text built into the image itself.
input[submit]
{
color: transparent;
}

or

input[submit]
{
text-indent:-9999px;
}

Categories