Friday, October 15, 2010

Blogger Tips: Setting Up Homepage

I went through lots of articles on how to give your blogger (blogspot) a website look. By website look I mean a navigation bar (menu) and a homepage when you type in your domain, like the one I have here in my test blog:


http://qwertyyyyyyy.blogspot.com/

By default your index page, which is the page that you'd get when you type in a domain, is the page where your main post body is located. Thus, when you visit a blog, you'd see posts in your index page. Whereas in a website, usually an index page is an introductory page, and you'd be able to click a tab from the menu to bring you to the blog/posts page. This is what we are trying to achieve in this tutorial.

One usual way is to publish a homepage post with it's date set far out in the future, so that it'd always be at top. Then the number of posts to be displayed on the main page is set to 1. This way, the homepage post will always be the first, and you'd have to click older post each time you want to read a post. That aint cool I thought.

In this tutorial, you'd be able to have a homepage, with no posts on it, and you can click on a tab to bring your reader to your posts. Like I said, less blog-like, more website-like. That's the advantage of this method. On the downside, this method is not so straight forward, and it involves some hardcoding. Something not so suitable for beginners, but feel free to try it out.


I'd suggest you to use firefox while trying this. with FireBug add on installed.

Step 1:

Create static pages. Few static pages to be exact. Be sure to finalize all your pages and stuffs before trying out this tutorial.

To create static pages:
Dashboard - New Post - Edit Pages - New page - and design whatever you want.

Usually static pages are Homepage, Archive, Links, Contact Me, Photos, etc. You can have up to 10 static pages. While you are at it, create one dummy page for later use.


Step 2:

Create your menu bar.

To do this: Dashboard - Design - Page Elements - Add gadget - Pages - just click ok and place it below the header.

Next, you wanna click on edit, and rename your main page to Welcome or Homepage or anything you like. Also, include the dummy page (which I have named Post) and unthick the actual welcome page.


Step 3:

Place welcome page on the main page.

First go get the HTML code from your static welcome page. To do this, Dashboard - Posting - Edit Pages - and click edit on your welcome/homepage. Click on 'Edit HTML' view and copy the entire code there.

Next, we wanna add this code to the main page. To do this, Dashboard - Design - Page Elements - Add a gadget - HTML/Javascript - Paste your code there.

Place your Gadget above the Blog Post box. Now, you can see your homepage in all the pages.


Step 4:

Display homepage only in the main page and remove posts from main page. 

It's time to get your gadget out - Firebug! Inspect what is the id/class of the html gadget and the main post. My main post's id is Blog1 and the HTML gadget's id is HTML2. See the image attached below.


Now that we have known our IDs, it's coding time. Go Dashboard - Design - Edit HTML - find for </b:skin> - Place the following below </b:skin>

<b:if cond='data:blog.url != &quot;http://qwertyyyyyyy.blogspot.com/&quot;'>
<style>
#HTML2{
display:none;
}
</style>
</b:if>

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/&quot;'>
<style>
#Blog1{
display:none;
}
</style>
</b:if>

Code explanation:
The first portion of the code is used to hide HTML gadget from all pages except mainpage. To use this in your blog, change the URL and the HTML gadget ID. The second portion of the code is used to hide posts from the mainpage. Again, customize this code by changing the URL and blog post's ID.

As of now, when you visit your blog's URL, you'll be greeted with your homepage, and none of your post will be visible on the front page. However, you've also noticed that there is no way for you to access your posts. Well, time for the next step.

Step 5:

Customize Menu/Navigation Bar.

Update: Some may find this step hard, so I've prepared another tutorial on how you can customize your Menu Bar using Link List instead of Pages Bar. It's much easier to use Link List to customize your Menu Bar, but you wont have your tabs highlighted when they are clicked. Check out the tutorial here.


First, view your blog using firefox. Right click on the page, and click on and view source. CTRL + Ffind for PageList1 . Scroll down and copy everything from <ul> to </ul> . Mine looks something like this:

<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/'>Welcome</a></li>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/post.html'>Post</a></li>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/links.html'>Links</a></li>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/contact-me.html'>Contact Me</a></li>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/archive.html'>Archive</a></li>

Next, open your notepad, and redesign the above code into the following form (refer to the attached image on what goes where. It aint hard, it sure looks confusing, but it is just a matter of copy and pasting):

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/&quot;'>
<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/'>Welcome</a></li>
<b:else/>
<li><a href='http://qwertyyyyyyy.blogspot.com/'>Welcome</a></li>
</b:if>

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/search.html&quot;'>
<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/search.html'>Post</a></li>
<b:else/>
<li><a href='http://qwertyyyyyyy.blogspot.com/search.html'>Post</a></li>
</b:if>

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/p/links.html&quot;'>
<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/p/links.html'>Links</a></li>
<b:else/>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/links.html'>Links</a></li>
</b:if>

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/p/contact-me.html&quot;'>
<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/p/contact-me.html'>Contact Me</a></li>
<b:else/>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/contact-me.html'>Contact Me</a></li>
</b:if>

<b:if cond='data:blog.url == &quot;http://qwertyyyyyyy.blogspot.com/p/archive.html&quot;'>
<li class='selected'><a href='http://qwertyyyyyyy.blogspot.com/p/archive.html'>Archive</a></li>
<b:else/>
<li><a href='http://qwertyyyyyyy.blogspot.com/p/archive.html'>Archive</a></li>
</b:if>


Function of the code? To highlight the current tab that has been selected from the menu. If you couldnt care less about it, just keep it as it is (the original form like how you have copied from the page source). Don't change the sequence. Note that for my second tab AKA Post tab AKA Dummy Page Tab from step 1, I have changed the links from http://qwertyyyyyyy.blogspot.com/p/post.html to http://qwertyyyyyyy.blogspot.com/search.html . Do the same in your blog, the format is something.blogspot.com/search.html

 Why do this? Well, since we have removed the index page from showing the blog's posts, we have to find someway to display the blog's posts. And we need an address that can be linked to the tab. The above link works just fine, though I am sure there are more than one way to do it.

Next, copy the code that you have generated, go to Dashboard - Design - Edit HTML - Check Expand Widget Template - Find for the following lines:

<b:loop values='data:links' var='link'>
<b:if cond='data:link.isCurrentPage'>
<li class='selected'><a expr:href='data:link.href'><data:link.title/></a></li>
<b:else/>
<li><a expr:href='data:link.href'><data:link.title/></a></li>
</b:if>
</b:loop>

Delete these lines and replace with your custom made codes. Save your templates.

Step 6 (Optional):

Margin fix.

When you visit your blog, you'll be greeted with your homepage now. You have a lovely set of menu at top, in which you can click on it to show your blog posts. But you might notice that the boxes for all the posts (except for your homepage) are a little bit down.



There's a quick fix for it. Use Firebug to see what's the id or class of the box. As in my case, it is known as column-center-inner. I want to pull it a little upward for all my pages except for my homepage, so this is the code that i'll use:

<b:if cond='data:blog.url != &quot;http://qwertyyyyyyy.blogspot.com/&quot;'>
<style>
.column-center-inner{
margin-top: -20px;
}
</style>
</b:if>


Place it below </b:skin>, similar to step 4. Voila, it's done!!


All these steps and what you achieve? A homepage with no posts to greet you and a menu which you can click on to bring to your posts. Worth it? For cosmetic purposes no, for hacking purposes yes. Happy trying.

Wednesday, October 13, 2010

Transformers Leader Class Starscream Review

Another precious gift from my Girlfriend. This time, Transformers Hunt for the Decepticons Leader Class Starscream. A really slow, detailed, step-by-step review made specifically for the beginners. As usual, Robot to Alternative Mode (F22 Raptor Jet) review.


Tuesday, August 31, 2010

Paranormal Activity caught on tape - again

Our camera took another hit again. But things didn't turn out the way we have wanted. We have heard lots of noises from the ceiling lately so we decided to put some powder directly below our attic opening in hope of recording something supernatural. See for yourself what the camera has picked up. Note: We have gone to bed after setting up the camera. When we woke up the next morning, the battery has already drained. It has recorded for almost 3hours +. To ease your viewing experience, I have trimmed the parts which has no activity in it, and fast forwarded some others. You might wanna increase your volume to hear things out.

How did you celebrate your Merdeka?

I celebrated mine by eating Maggie 1Malaysia..

Saturday, August 21, 2010

Paranormal Activities Caught on Camera at Home!

Nowadays I sleep late. Like 8am late. I know it'd sound stupid when I say this, but I've been hearing lots of funny noises. When these noises are heard, usually everyone else would have long been on bed. Usually I'd blame it on Yuri (our 3-month-old puppy). But recent chains of events have suggested otherwise. So to actually find out what was going on, and to kill some time, I decided to investigate what has been happening. Most of the time, I'd keep my computer room door open and I'd be with the computer, alone in the dark. I'd have clear vision of the living hall, and so far nothing unusual has been sighted. If there were needs for me to go upstairs, I'd set up my camera and then proceed. This has been going on for 2 weeks or so. But what was caught on tape last night was unexplainable, even for me. Never in my life I thought I'd see something real like this. You have to see for yourself to believe. Go ahead and download the video to analyse it if you have to. My advice, better trust in God, these things are real. Mark my words.