Pages

website design

Wednesday, May 11, 2011

茶茶衣铺

茶茶衣铺
New online shop in Facebook selling clothes!! Check it out!! 茶茶衣铺
Selling point:    
Ø  Nice & Affordable
a.       Price ranges from MYR20.00-30.00
b.      Plenty of styles to choose from
Contact: >Tsunamigirl.XJ< to place your order and for more details.

HURRY!! Pre-order period starts from 11th May 2011 (Wednesday), until 31st May 2011 (Tuesday)!!

.: JEFF :.

Friday, February 11, 2011

Guideline: Create Vertical Menu

Guideline: Create Vertical Menu


DISCLAIMER:
This guideline/tutorial is referring to: Trick Blog: Create Vertical Menu. The below copied text is strictly from Trick Blog. Jeff & Tan is only providing improvements on the referred tips. We will highlight the part suggested by Jeff & Tan.

----------------------http://trick-blog.blogspot.com/--------------------------
We have learned how to createhorizontal menu before. Now we will try to make a vertical menu. We will make a vertical menu like the image. Ok let's do it

1. Login to blogger then choose"Layout-->Edit HTML"
2. Put the script below before this code ]]></b:skin> or put it in CSS code area.
.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/blue1.gif') repeat-x bottom left;
font: bold 12px Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{
position: absolute;
width: 190px;
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/blue2.gif');
}

* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }


You can change the menu color, look at the red text (blue1.gif and blue2.gif). Change it with some color menu below. For example, if you want to choose red color, then the code would be like this :

.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/red.gif') repeat-x bottom left;

dan

.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/red.gif');

3. Save your template.
4. Then go to "Page Elements" menu
5. choose "Add a Gadget -->HTML/JavaScript" the insert the code below. 


<ul id="verticalmenu" class="glossymenu">
<li><a href="/">Home</a></li>
<li><a href="http://trik-tips.blogspot.com">Trik Blog</a></li>
<li><a href="http://x-template.blogspot.com" >Free Template</a></li>
<li><a href="http://getebook.co.cc">Free Ebook</a></li>
</li>
</ul>


Note :
- The red code is the links.
- The Blue code is anchor text.
- If you want to add menu, just copy the blink code and paste it.

6. Then click "Save"


-----------------http://trick-blog.blogspot.com/-------------------------------

The above tips is proved to be workable, but there are some parts Jeff & Tan found not functioning. Therefore, this tips is improved by Jeff & Tan through our trial & error.

Suggestion 1: Background Color
The color background link can be changed to the link provided below:


The link is to be replaced to these links in the above tutorial: http://blog.superinhost.com/vertical/blue1.gif
http://blog.superinhost.com/vertical/blue2.gif. To get more colors, please visit: http://junxian926-20.blogspot.com/p/colors.html for more colors. Links can be obtained through clicking on the color that you want and then replace them accordingly. Colors that are not available can be requested by leaving comments in this post.

Suggestion 2: Removing Borders

You can remove the border if you feel that it is annoying or unwanted by putting a zero at the row of "border" instead of "1px solid black". By looking at the part to be changed, you actually can modify the thickness of the border too. Just change the figure besides the part "px solid black".

Suggestion 3: Changing Color of the Wordings in the Menu

If you wanna change the color of the words inside your menu, change this part:

.glossymenu li a:visited, .glossymenu li a:active{
color: white;

Change "color: white;" into "color: <your preferred color>;" eg. "color: black;", then you will get the color that you want.

Suggestion 4: Changing Font of the Wordings in the Menu

You can change the font of the words inside your menu by changing the following part:

bottom left;
font: bold 12px Verdana, Helvetica, sans-serif;
color: white;

Change "font: bold 12px Verdana, Helvetica, sans-serif;" into "font: bold 12px <your preferred font>;" eg. "font: bold 12px Times New Roman, Helvetica, sans-serif;". Make sure you know the name of the font that you guys want. >.^ Looking at the part shown above, you actually can modify whether the words are to be bold, italic or underlined. Besides, you can also change the size of the words by changing the figure beside the "px".

After taking into account the following changes,

  1. Correcting the error relating to the background color of the menu to Turquoise;
  2. Removing the border of the menu; and
  3. Changing the font of the words inside the menu to Times New Roman.
the code is amended into as follows:

---------------------------------------------code------------------------------------------
.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
border: 0;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
background: white url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitRWxWHxIZQ65LiwC4WPRz4ZBOpByAWiSb0mnGJzD9wz-bB0OIrT23rI8XHYsa1DnW1-obUiWtZUmdXL3KWFEYdYSXaxVtSxzlo9_6v_Stp-rB52pn1byelnz4rACpkO6sxwsvrjhBiA/s1600/Turquoise.png') repeat-x bottom left;
font: bold 12px Times New Roman, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{ 
position: absolute;
width: 190px; 
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px; 
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitRWxWHxIZQ65LiwC4WPRz4ZBOpByAWiSb0mnGJzD9wz-bB0OIrT23rI8XHYsa1DnW1-obUiWtZUmdXL3KWFEYdYSXaxVtSxzlo9_6v_Stp-rB52pn1byelnz4rACpkO6sxwsvrjhBiA/s1600/Turquoise.png');
}

* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }
-----------------------------------------------------code---------------------------------------------------

Now, we provide a little guide on setting the items in the menu:

Code as provided by Trick Blog:

-----------------------------------------http://trick-blog.blogspot.com/----------------------------------
<ul id="verticalmenu" class="glossymenu">
<li><a href="/">Home</a></li>
<li><a href="http://trik-tips.blogspot.com">Trik Blog</a></li>
<li><a href="http://x-template.blogspot.com" >Free Template</a></li>
<li><a href="http://getebook.co.cc">Free Ebook</a></li>
</li>
</ul>
-----------------------------------------http://trick-blog.blogspot.com/----------------------------------

Try to notice an Italic row there. An item is included inside this "<li>", so if you wanna add new item into the menu, copy any line that is easy to be identified and just replace the URL in the code and the text to be displayed.

That's all for the guideline today. Do leave a comment under this post if you have any enquiry. We will reply you as soon as possible. Have a nice day. =)


Signed off by,


Jeffery

Sunday, February 6, 2011

Review: I Love Hong Kong [Cantonese] (U)

Review: I Love Hong Kong [Cantonese] (U)


Category: Movie
Genre: Comedy
Duration: 101 mins
Watched at: MBO @ Tanjung Village Manjalara Tesco
Timing: 4.40 p.m.

Rating: 4.25 / 5.00

Overall
*I LOVE HONG KONG* POSTER
*I LOVE HONG KONG* POSTER
It's from the producer of 72 Tenants of Prosperity, if you guys do remember which movie is this. =) This movie, I Love Hong Kong is meant to be a comedy, thus, we expect the quality of the jokes to be high. You will not feel like being in the box for that long (1 hour and 41 minutes) as this movie is really a funny one. How funny it is? Hmmm, I can't use any words to describe this for the time being as it is super-duper funny to me. There are a few scenes that are so funny and that I can't help stop laughing at. You will know the feel when you watch it. For example, the part where Tony Leung was so unfortunate that he went into the "Dinosaur" twin sister's house at night just to avoid the misunderstanding between him and his wife. You will laugh at his unfortunate as the twin sister is so horrible. Hoho!
Young Tony Leung, Bosco Wong encountering with the Young Beauty Twin Sister (who turned into "Dinosaur" older)
Other sub-themes


You can't say it's only meant for comedy, as  there're other sub-themes present in the movie. Which theme did u notice after watching the movie? Family? Love & Relationship? Justice? I'll elaborate some in here.
Bosco (Young Tong Leung) & Wong Cho Lam (Young Eric Tsang)
The whole group of the artistes singing together in the end

FAMILY: You can find this from the interactions between Tony Leung and Sandra Ng as they are the one who showed the message of how important a family member is in the movie. Sandra Ng supported his husband in the market and helped him to market the leftover toys that he had after the wind up of his toy factory.
Tony Leung & Sandra Ng
JUSTICE: It's just all about the scene where Aarif Lee helped Fala Chen's father to speak to the police officer, telling the reasoning behind to let them go. It's so true that I also agree. Those police (don't think they are police, maybe DBKL) should be considerate but not work to meet the quota.
Aarif Lee & Fala Chen
I believe this will be a great movie for all and a movie that everyone will enjoy watching. Any feedback or comment, you guys can just leave your comment here or our facebook page. Have a nice day. =)


p/s: Video Trailer *click here if you could not view the video in our blog


p/s: MV for the sub-theme song *click here if you could not view the video in our blog


Signed off by,

Jeffrey

Friday, January 28, 2011

Review: Homecoming [Mandarin/Cantonese] (U)

Review: Homecoming [Mandarin/Cantonese] (U)


Category: Movie
Genre: Comedy
Duration: 90 mins
Watched at: TGV @ Wangsa Walk Mall
Timing: 12.00 p.m.



Rating: 4.50 / 5.00


Overall & Theme


First of all, it's a movie from Lee Thean-jeen, starred by Jack Neo, Mark Lee, Afdlin Shauki, Ah Niu, Jacelyn Tay, Huang Wenhong, Rebecca Lim and Koe Yeet. Major part of this movie is hilarious and for the touching scenes you guys can expect it if you are aware of the plots. The message or the main theme is quite obvious as you can feel it strongly when you're watching the movie. This scene is the scene that I remember most vividly whereby Jack Neo sacrifices "her" lottery ticket, which entitled "her" $8,000 as the first prize, to exchange air ticket with an Indian guy so that the little girl can rush back to her home to see her dad whom she missed a lot.
The girl who missed her dad a lot after leaving him alone in Singapore.


Family-based Theme


Not too emphasizing on the comedy side, this story is all about homecoming and the importance of family. Through the plots at the beginning, the message is delivered successfully. A few examples here:
  • The story starts with the homecoming of Jack Neo and Ah Niu with the intention to introduce a girl to Ah Niu. Throughout the story, they exhibit that they are so keen on going back for the reunion. This is further supported by the other family members of theirs, waiting for them to start the dinner, showing the importance of the dinner and the traditions. =)
  • Supporting the climax mentioned in the above point, there is another little scene exhibited by the young spouse in the family. Being the modern generation and not being in the traditional Chinese family, the wife doesn't understand the meaning of the reunion dinner for Chinese. Spending a day with her husband's family, she seems to understand it slowly and have given up the free trip to Bali Island after the reunion dinner and chose to wait for Jack Neo and Ah Niu. =)
  • Mark Lee is an ego and proud character in the movie, who always complains the work done by his fellow cooks. When Chinese New Year is around the corner, all his cooks leave he himself there being so helpless to complete the dinner preparation for the Minister. His restaurant manager helped him for the first time by bringing all her family members there to cook, but gave up to help him after he had scolded all her family members away. Fortunately, she returned to the restaurant with her family to help him at last. =) After the dinner, he's surprised by the return of his daughter in the end.
Hope you guys will enjoy this movie a lot as it really reminds you about your family, just like how Great Day reminded us too.

Signed off by,
Jeffrey

Thursday, January 20, 2011

Review: Great Day [Mandarin/Cantonese] (U)

Review: Great Day [Mandarin/Cantonese] (U)


Category: Movie
Genre: Comedy / Drama
Duration: 95 mins
Watched at: Big Cinema @ Brem Mall
Timing: 2.00 p.m.

Rating: 4.25 / 5.00

Overall & Theme


Great Day, starred by Jack Lim, Wan Wai Fun, Royce, Vivian, Jiang Han, is a Mandarin-Cantonese mix movie. There is another dialect being used in the movie too, such as Hokkien, so it suits the local here well. Storyline or the plot is quite tough for the public as it requires some self-linking. You have to be in the situation in order to understand well. Watching the movie now is considered to be the most suitable time for me as it does really make me stand in my friend's side to think for her. She did really miss her family since she had shifted to Kuala Lumpur for further studies. This is the main theme for the movie. Family. Without family, you're nothing. And also, when you wanna "repay you debt owed to your parents", but they are not around anymore, you will feel regret for sure! I bet you will! If you do not have the chance to do so when they are still around. The dialogues or the scripts sound local and it's not much different from our daily life in Malaysia. Thinking about that, I feel proud to be Malaysian.

How to enjoy it?


Follow the story closely as it progresses. The production team has made the effort to increase the depth of the movie as it requires the audience to make some simple thinking to feel the message to be delivered. There are a few points to be noticed about so that you can get the theme and message better. For example, the scene that I remembered most vividly is, the scene whereby the little girl "Zi Xin" took all the way long to Perlis from Kuala Lumpur just to visit her known-not-long-ago grandfather. She's just a young girl studying primary school, but she made her own effort to travel to Perlis without knowing the actual way to reach there. Without the bond between family members, you won't have this kind of courage to do so. Do take note of those little little points to ponder well.

Ending


The ending is not that good enough for the public or for pure entertainment as it did not end well though the story is touching. To me, actually the ending is good enough as they have delivered the required message to us with a memorable scene. For those who can understand the underlying meaning intended to be delivered, it's just nice since it's also a local production. By the way, there's a link between the title and the theme or storyline. The greatest day ever in the world is to be with your closest family, you will regret when u can't do so when you feel like wanna to be with them.

Signed off by,
Jeffrey

Sunday, January 16, 2011

News Update @ 16/01/2011 - Zodiac Signs Changes

To our dearly members,

It's a shock for us too, when we got to know about well-known zodiac signs changed! We have used to the existing zodiac model which contained 12 zodiac signs, but now a refined model is being introduced on January 11, 2011. The new model consists of 13 zodiac signs, which include a new sign that had been excluded out during the Ancient Babylons - Ophiuchus (the snake holder). Besides, the model suggested the change of signs due to the alignment of stars was pushed by about a month (newsfeed.time.com) because of gravitational pull of Moon has on Earth.

Thus, our zodiac signs are affected by about a month and the new zodiac sign. For the actual dates of each zodiac sign, please refer to the below list:

Capricorn: Jan. 20 - Feb. 16
Aquarius: Feb. 16 - March 11
Pisces: March 11 - April 18
Aries: April 18 - May 13
Taurus: May 13 - June 21
Gemini: June 21 - July 20
Cancer: July 20 - Aug 10
Leo: Aug. 10 - Sept. 16
Virgo: Sept. 16 - Oct. 30
Libra: Oct. 30-Nov. 23
Scorpio: Nov. 23 - Nov. 29
Ophiuchus: Nov. 29 - Dec. 17
Sagittarius: Dec. 17 - Jan. 20

Signed off by,
Jeff & Tan

Saturday, January 15, 2011

Poem: F.R.I.E.N.D.

F.R.I.E.N.D.



Friend, we will be together forever.

Random circumstances will not lead us apart.
In the future,
Either we often or seldom communicate with each other,
Never forget the friendship that vividly etched in our heart.
Deep enough inside my heart, I will always remember you, no matter what.

Signed off by,
Jeffrey
Related Posts Plugin for WordPress, Blogger...