Archive for the ‘General’ Category

Website Make Over

There are many things take into consideration when you’re looking to bring more traffic to your website.  One thing that many web site owners feel to look at is as their website might need a makeover.  Here are some tips for making over your website in order to generate more traffic.

You need to make sure that your website is easy to read.  This is why you need to choose an easy to read font.  You also need to make sure that the colors that use any web sites make the type easy to read.  You don’t want to use a very light color for your font and you don’t want to use a similar color for the background of your website as you do for the font color.

The load time of your website is another thing you need to take into consideration when you’re trying to find if your website needs a makeover or not.  You need to make sure that it doesn’t take a lot of time to load the different pages of your website otherwise you’re likely to lose visitors.  Only keep the pictures that you still necessary to the website and don’t add a whole bunch of gadgets to your pages that will bring down the load time of a page.

You also want to look its product descriptions when you are redoing your website.  You want to make sure that the product description will grab the attention of your visitors while being as simple as possible.

This is the start of the things that you can do in order to give your website a fresh new makeover.  You can also look at the overall design of your website to make sure that you’re using the most trendy and popular designs so you’re sure to attract a good amount of traffic to your website.

Tips to Attract More Customers to Your Website

The goal of any website owner is of course to gain as much traffic is possible to the website.  One of the best things that you can do is look for ways to start attracting more customers to your website.

One thing that you can do that will attract more visitors to your website is to start taking part in social media.  Web sites like twitter and Facebook can be great tools in attracting more customers to your website.  It can be very simple to create a business page on Facebook and start interacting with potential customers.  The great thing about taking part in social media is that you’ll get instant feedback on what people feel you’re doing wrong and what people feel that you’re doing well in your business.

Another thing you can do in order to attract more people to your website is to offer coupons or discounts.  Keep about getting a great deal and if they can get a percentage off what they purchase or free shipping it will make them much more compelled to make a purchase on your website.  You can choose to offer other people other discount on your website every month in order to attract new customers.  You could also choose to offer a special discount to new customers on your website in order to attract more people to make a first purchase with you.

Making sure that your website is visitor friendly is another way to attract more customers to your website.  You need to make sure that people find your website to be simple to navigate through so that they will be sure to return to your website.

With a little creative thinking you can put these tips to work for you to start attracting more customers to visit your web site and make a purchase.

Free Ways to Get More Traffic to Your Site

If you’re looking to generate more traffic to your website finding free ways to be able to do that can be very helpful.  The following are some free ways to generate more traffic to your website.

Placing free classified ads can be one way to introduce people to your business while generating more traffic to your website.  There are many free classified ad websites on the Internet where you can place ads for your website.  All you need to do is rated catchy attention getting ad and be sure to place a link to your website and you’re all set.  You can place ads as often as you like.

You can choose to do some offline promotion as well to generate more traffic to your website.  You can create fliers very easily on your own computer to promote your website.  Just be sure when you’re creating these fliers that you make a place to put your business cards so that people will be able to take your information with them.  Nothing would be worse than to have someone interested in your website and have no way to take your information with them.

Creating quality content and submitting them to article submission directories is another way to get free traffic to your website.  You are allowed to have an article resource box where you can add a link to your website.  You need to make sure that you write a great call to action to make people want to click on your link as soon as they are done reading your article.  As soon as you submit an article you are promoting your website.  And the great thing is you can submit as many articles as you like absolutely free.

This is just the start of the free things that you can do in order to generate more traffic to your website.

Simple Tips to Traffic Building Success

The goal of every website owner is to get their website noticed among all of the other search engine results when someone is looking for information related to their website.  The following are some simple steps that you can take in order to generate traffic to your website and hopefully accomplish that goal.

Writing articles is an excellent way to get more traffic to your website.  You need to remember though that you need to write quality content that people are going to be interested in reading.  If you’re not writing content that people are going to be interested in your not going to get the traffic that you want to your website.  If you do not feel that you can create high quality content on your own you should look into hiring someone to do it for you.  When you’re done creating new content than it is time to submit them to article directories and since article directories allow you to include building to your website in either the author biography box or the resource box each time you submit an article you will be getting the visitors to your website.

Researching keywords to optimize your website is another thing that you can do in order to start getting more traffic to your website.  When you’re looking for the proper keywords and keyword phrases to use on your website you need to think about several things.  You need to think about what keywords and keyword phrases are going to be relevant to your website along with what keywords are popular.  Misspellings and plural forums are other things you need to consider when you’re researching keywords.

These are just a couple of the things that you need to keep in mind in order to start generating more traffic to your website.

Using Keywords To Drive Traffic

When you are looking to drive more traffic to your website using keywords can be very useful. Keywords are what people type into search engines when they are looking to find information on a particular subject. They can play a very important part in generating traffic to your website.

When you are creating a new website one of the first things that you must consider is how your website is going to get noticed among the millions of other web sites that will come up when a search is completed. Getting your website into top 10 search engine results should be the goal of every website owner. But what is best when you’re using keywords will keywords or keyword phrases work better for you? Most people when they’re using a search engine use 1 to 3 phrases in order to complete a search. Using very specific keywords may guarantee that a lot of people visit your web site but they will not make a purchase as the audience isn’t very targeted. So when you’re looking for key words and phrases to use you have to not only choose the ones that are popular but choose the ones that are most relevant to your site.

You’ll find that the most time-consuming process in using keywords and keyword phrases is selecting which ones that you’re going to use. You need to try to think about who would be interested in what your site has to offer. Then you need to think about what kind of keywords or keyword phrases that they will put into a search engine in order to provide information on your website. You also need to take into account misspelled words as well as the plural version of some words. You also need to take into consideration people in different countries. If they use different words to describe different things you might want to consider using those words as well in your keyword optimization.

Keywords can play a very big part in generating traffic to your website as long as it’s done properly.

Useful JavaScript and jQuery Snippets

Create your very own jQuery selectors

//extend jQuery functionality
$.extend($.expr[':'], { //write the name of your custom selector
eachTen: function (s){//s: selection
//Matching element
return parseInt(
$(s).html()) > 10; }
});
$(function(){ //Shortcut for $(document).ready ;)
$('li:eachTen').css('background-color', '#0000FF');
});

Make you page editable in realtime

//Paste me on your URL bar
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0

Display Centered Window

function getScrollXY() {
var scrOfX = 0, scrOfY = 0;
if( typeof( window.pageYOffset ) == 'number' ) {
//Netscape compliant
scrOfY = window.pageYOffset;
scrOfX = window.pageXOffset;
} else if( document.body && ( document.body.scrollLeft | document.body.scrollTop ) ) {
//DOM compliant
scrOfY = document.body.scrollTop;
scrOfX = document.body.scrollLeft;
} else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
//IE6 standards compliant mode
scrOfY = document.documentElement.scrollTop;
scrOfX = document.documentElement.scrollLeft;
}
return [ scrOfX, scrOfY ];
}
function getWindowSize() {
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
return [ myWidth, myHeight ];
}
function DisplayCenteredWindow(el, width, height) {
var x = getScrollXY()[0];
var y = getScrollXY()[1];
var halfWidth = width/2;
var halfHeight = height/2;
//var offsetX = 250 + x;
//var offsetY = 100 + y;
var sizeX = getWindowSize()[0];
var sizeY = getWindowSize()[1];
var cssLeft, cssTop;
cssLeft = Math.ceil(sizeX / 2) - halfWidth + x;
cssTop = Math.ceil(sizeY / 2) - halfHeight + y;
$(el).css({position:'absolute', top:cssTop+'px', left:cssLeft+'px'});
}

jQuery Cookies


function setCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}

function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}

function deleteCookie(name) {
setCookie(name,"",-1);
}

Here is how you use it


// Create/write a cookie and store it for 1 day
setCookie('myCookie', 'myValue', 1);

// Get my cookie
getCookie('myCookie');

// Delete/erase my cookie
deleteCookie('myCookie');