Template by:
Free Blog Templates

Showing posts with label blogging. Show all posts
Showing posts with label blogging. Show all posts

Tuesday, January 15, 2008

Setting Up part 4

If you are generally observant, you would have noticed that I have installed the new expandable posts summaries. The purpose of this is so the frontpage of my blog will not be crammed and readers don't have to scroll all the way to the bottom.

With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.

If you want to find out how I did it...



How can I create expandable post summaries?


With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.


There are three ingredients that go into this feature: conditional CSS, a "read more" link for each post, and a modification for the posts that use this feature. So let's go through it step by step.


Conditional CSS



We're going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet, depending on what kind of template you have:


(for classic templates)

<MainOrArchivePage> 
span.fullpost {display:none;}
</MainOrArchivePage>

<ItemPage>
span.fullpost {display:inline;}
</ItemPage>


(for layouts)

<b:if cond='data:blog.pageType == "item"'> 
span.fullpost {display:inline;}

<b:else/>
span.fullpost {display:none;}
</b:if>


Your style sheet is usually near the top of your template, between the <style> and </style> tags. If you have your style sheet in a separate file, you'll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <style> tags around them.



What we did here was to define a class called "fullpost" that will appear only on post pages (permalinks). Part of each post will use this class, as we'll see later.


"Read More" Links


Add the following code to your template, somewhere after the <$BlogItemBody$> or <data:post.body/> tag:


(for classic templates)

<MainOrArchivePage><br />
<a href="<$BlogItemPermalinkURL$>">Read more!</a>

</MainOrArchivePage>


(for layouts)

<b:if cond='data:blog.pageType != "item"'><br />
<a expr:href='data:post.url'>Read more!</a>
</b:if>


This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the "Read more!" text with whatever you like, of course.


Post Modifications



The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:


<span class="fullpost"></span>


This part can actually go in the post template, if you don't want to have to type it for each post. You'll enter the summary text outside the span tags and the remainder inside, like so:


Here is the beginning of my post. <span class="fullpost">And here is the rest of it.</span>


Now, when a reader visits your blog, this post will appear like this:

Here is the beginning of my post.
Read more!
When they click the link, they'll go to the post page where they'll see the whole thing:
Here is the beginning of my post. And here is the rest of it.





Saturday, January 12, 2008

Monetize Your Blog!

That was the question I asked myself when I am thinking of what to write here.

First of all, what's the purpose of your blog? Initially, I thought blog is equivalent to an online diary, where you post all your thoughts for *gasp* millions of strangers all over the world to see. The idea of letting my most private thoughts be heard was not so attractive, more so when I heard about the case that someone was actually fired from her workplace due to her blog content...

Then I realize that nowadays, blogging can be about anything. Some people even use it as a tool to making money, as I browsed through some sites, I heard of successful money-making through blogs, and I, of course, began to daydream myself.



Now how to make money through blogging? I surfed through a few sites, and decided to make a successful money-making blog... and be featured in the next Internet Millionaire news (yeah right).

First, I scouted through sites with names like "Blogging for Dummies", "Money-making blogs" etc



Then I realize these people are actually putting a lot of effort to make money through blogs, and not as easy as it seems.

Well first, you've got to be at least well-versed with HTML codes to insert all those ads into your site. Secondly, you've to have the patience to scour through the Pay-to-Click programs to identify which are scams and which ones are valid money-making tools.

Pros and cons of these Pay-Per-Click programs:

Pros:

* You earn money
* You earn money whilst sleeping

Cons:

* Minimal earning (unless you join up multiple sites or you have tons of referrals).
* Heartaches and headaches when you've signed up for scam programs

Well which ones are valid?

Here's where I had to do a research, and came up with these legit
money-making tools:

One of the most trusted pay per click site is www.neobux.com.

NeoBux shines because it has been around since 2008 and paid more than $40 million to its users. The minimum payout is $2.00 and their payout system is simple and fuss-free. All you need is a PayPal or Alertpay account.

So don't wait, register today at
NEOBUX!



Now for a list of other TOP, PROVEN, BEST Pay Per Click Sites that you MUST join if you haven't done so:




Incentria

Clicksia



AyuWage Services - Get Paid to Visits Sites and Complete Surveys
DonkeyMails.com: No Minimum Payout

And then there are many newly emerged sites that offer great rates and promotions. Problem is, these sites usually don't last long and often turn out to be scam sites. Below is a list of sites that you can try out, but proceed with caution.

Sites With Potential Earnings *May Need To Invest To Cash Out*:

Setting Up part 3: The Smilies

Oh yes, I wanna be able to add smilies to my posts, still figuring how to add the option in the comments so that you readers can use them as well! Anyway, here's how to do it if you are a newbie like me.

By using GreaseMonkey extension for Firefox, it is the easiest way to be able to use emotions in your blogs.



What you’ll need to use emoticons in your blog posts:

  • Latest Firefox Web Browser. You can download Firefox by clicking on the link on the left sidebar of this blog.
  • Next you need GreaseMonkey Extension for Firefox. After installing Firefox, install GreeseMonkey Extension from here.
  • And the emoticons GreeseMonkey script. Finally install the script by left clicking here.

Now when you’ll be writing your blog post, you should be able to add emoticons by simply clicking on them. This only works in compose more, not in text/html mode.

Hope this helps. wink