Real Money On Web

Archive for the ‘Wordpress’ Category

Beginner’s CSS Tutorial

Posted by gemsuraj on September 16, 2007

Cascading Style Sheets (CSS) allows you an efficient way to style up HTML web pages, and this short guide is here to explain how CSS works and the benefits gained from using CSS.

Firstly, the benefits. For many years the de facto method of building web pages was to use tables, with all style instructions written on the page (the dreaded “font” tag springs to mind…). The disadvantage of this was that on large websites, any future changes such as editing the text colour would need to be done on each individual page. This is obviously highly time consuming and hardly cost effective to businesses. CSS allows you to separate the style from the content. This means putting all text styles, positioning and background image instructions into a single separate file and linking to it from each page. Then any future changes need only be done in one place. Other benefits include quicker loading times (due to the smaller individual file sizes) and easier crawl-ability for search engines.

So, how does this CSS thing work then? In its simplest terms, you declare a list of styles to attach to every instance of a particular element in the following format:

<style type=”text/css”>
selector {property: value;}
</style>

Let me break this down – the <style></style> tell the browser to read the code as CSS, the “selector” is the element you want to style up, the “property” is the type of style you want to declare and the “value” is the value assigned to that style. For example, if I wanted to make the text in all “p” tags red, I would use the following CSS declaration:

<style type=”text/css”>
p {color: red;}
</style>

The “;” after the value isn’t strictly necessary in either of these cases, but is necessary when declaring multiple styles within the same curly brackets “{}”.

If you didn’t want all p tags to have red text, you can take this a step further by adding a class to the p tags you want to have a different style and referencing them in the CSS with the “.class” selector:

<p>This text is red.</p>
<p class=”blue”>This text is blue.</p>

<style type=”text/css”>
p{color:red;}
p.blue{color:blue;}
</style>

This will produce the following output:

This text is red.

This text is blue.

I did mention earlier that the CSS is best put into an external file, but all I’ve shown so far is how to write CSS declarations within the HTML page. Let me fix that…

The CSS can go in an external page with a file extension of “.css”. I’ll call mine “stylesheet.css”. Within the <head></head> tags at the top of the HTML page you need to link to this stylesheet like so:

<link rel=”stylesheet” type=”text/css” href=”stylesheet.css” />

There you have it. With a little more research into how to control the various elements and what selectors you can use (W3 Schools is always a good place to start), you should be well on your way to streamlining your web pages!

Posted in Blogger, Blogging, SEO, Tips & Tricks, Wordpress | 2 Comments »

How to Comment to Bring in Traffic

Posted by gemsuraj on September 14, 2007

One of the best ways to get others to visit your blog is by visiting other blogs and commenting. Comments with a link to your blog will pique the curiosity of other bloggers and visitors and encourage them to visit you in turn to reciprocate. What follows are some tips on leaving or responding to blog comments.

Visit Similar Blogs:

Do a search of other blogs in your niche group and visit each one. If you have something to add, or if you disagree, post in the comments. Do leave a link to your own blog, but don?t make a big deal about it. This will cause others to visit your blog and leave comments. If you have some good posts, other bloggers might also link to your blog. By keeping active in the community, you?re sure to have the traffic flowing back and forth between each other?s blogs.

Don?t Spam:

When linking back to your blog, be subtle. Embed the link in your name or signature. Many bloggers don?t like ?Hey come visit my blog?? type comments as they?re too spammy.. The trick is to get them to visit without actually asking them to do so. If you posted on a similar topic, you can be a little less subtle as long as you?re not pushy. Leave your comments and at the end you can give a brief plug: ?I blogged an opposing point of view on this very subject. You can see it here? and leave the link.

Be Respectful:

You wouldn?t want someone to visit your home and be rude to your guests, would you? When you leave nasty comments at other blogs, you?re doing the same thing. Whether you agree with the original post or not, be respectful. Do rebut if you feel a rebuttal is in order, but be nice and be respectful. Nothing brings in traffic more than controversy and nothing drives it away like a mean or rude post.

Posted in Blogger, SEO, Tips & Tricks, Wordpress | Leave a Comment »

Blog Traffic: Patience Pays Off

Posted by gemsuraj on September 14, 2007

One of the mistakes many brand-new bloggers make is to expect the traffic and revenue to flow almost immediately upon going live. They believe having a niche blog and using the proper search terms will automatically alert others to their blogs existence. Unfortunately, the truth is that it takes time to build up a readership. In fact, it takes many bloggers a year or more to build an impressive reader base

If you’re not getting much traffic and aren’t sure why, it can be due to one of several factors:

Your blog is still too new:

Be patient. If you have a great resource, people can, and will come. It’s unrealistic to expect to see 100 or more visitors in the first few months. Most blogs don’t see that many people ever.

Read the rest of this entry »

Posted in Blogger, SEO, Tips & Tricks, Wordpress | Leave a Comment »

Regular directory submission

Posted by gemsuraj on September 14, 2007

691571_business_notepad_21 Some good 10 days ago, I?ve talked about submitting my blog to blog directories, but today I?ll start promoting my blog on regular directories. It?s pretty much the same as to blog directories, you need the URL of your blog, short title, a good description, email and sometimes you have to add a reciprocal link to the directory on your blog or website. Be sure to use InformEnter, because it will make your submissions much easier and faster. I really don?t know any semi-auto submitters like that for Internet Explorer, so I would be happy if some of you could point out one that works ok.

If you have a regular website, put it in the right category (don?t put a car blog in the ?internet marketing? category on the directory you?re submitting to). It?s usual that you first have to find the right category and then click on the ?add site? or ?submit site? button. If you have a blog, be sure to choose the ?blog? directory and then choose the suitable sub-directory or you won?t be listed.

And if possible, always chose the option ?regular link without reciprocal?, because this will give you a one-way link to your website, which google or yahoo or msn love very much. Much more than a reciprocal link. That should do it. If you have any other question, post a comment and I?ll try to answer. Good luck with the submission!

Posted in SEO, Wordpress | Leave a Comment »