Kwun Ho on May 31st, 2009

Word Camp in San Francisco has been a wonderful experience for me.  This year, there are over seven hundred people attending.   This event has been one of the best that i have attended in recent past.  They were given out free T-Shirts,  all the food and drinks are free.  I notice that there are many [...]

Continue reading about WordCamp San Francisco May 2009

People asked me all the time as to how can they get their site to show up on the first page of Google.com?  The answer is you got to do what search engine like, which is a science of it’s own.  But a good clean website fill with useful contents and keywords that focus on [...]

Continue reading about SEO 101 - Techniques you can use to increase your site’s search engine ranking

Kwun Ho on May 25th, 2009

In the Book  Joomla! 1.5: A User’s Guide: Building a Successful Joomla! Powered Website, 2nd Edition, It walks through the steps of creating a template. Specifically, you can create a template that uses Cascading Style Sheets (CSS) to produce a layout—without using tables.
Read More on
Creating Pure CSS Template Here…

Continue reading about Creating Pure CSS Templates in Joomla

CSS or Cascading Style Sheets has evolved over time with version CSS1, CSS2, and the most recently CSS2.1.   Most of the newer major browser such as Internet Explorer 8, Firefox 3 and Safari  provide support for the new feature in CSS 2.1.   However, some of the most widely used browsers such as Firefox 2.0, Internet Explorer [...]

Continue reading about Making vaild CSS to ensure cross-browser compatibility

Kwun Ho on May 19th, 2009

Backlinks are incoming links to a domain or several web pages at a domain. People count the total number of backlinks as a one of the key indicators of the importance of the link popularity which a web page receives. Link popularity of course is only one indicator of the importance for search engines. Other [...]

Continue reading about Backlinking your way to SEO Success

Margin ,padding and borders are the three most commonly used properties for spacing-out elements.  A margin is the space outside of the element, whereas padding is the space inside the element. Border can be useful to add spice to an element and can be change to meet different design needs.
Change the CSS code for h2 to the [...]

Continue reading about Working with CSS Margin,Padding and Borders - CSS Lesson Five

Often when i need graphics, my first step is to go to the Microsoft’s Office Online Clip Art page.  Now, I know, you’re probably thinking, He must be high on something to recommend us to use such a novice tools to design site.  
Hear me out. I’ve poked around quite a bit on the Web [...]

Continue reading about Spice up your WordPress Site with free Graphics and Clip Arts

Kwun Ho on May 18th, 2009

You can alter the size and shape of the text on a web page with a range of properties, outlined below:
font-family
This is the font itself, such as Times New Roman, Arial, or Verdana.
The font you specify must be on the user’s computer, so there is little point in using obscure fonts. There are a select few [...]

Continue reading about Working with CSS Text Element - CSS Lesson Four

Kwun Ho on May 17th, 2009

There are 16,777,216 millions of colors available for us to choose from when we working with CSS.  CSS work with RGB (red/green/blue) standard and accept color values in hex code. 
The three standard values in the RBG are from 0 to 255, 0 being the lowest level, 255 being the highest level (for example full red). These [...]

Continue reading about Working with CSS Color Elements - CSS Lesson Three

CSS structures a litte differently then HTML.  When we work with HTML, we work with tags, CSS however,has selectors. Selectors are the names given to styles in embedded and external style sheets. 
In this article,we will be focusing on CSS selectors, which are simply the names of HTML tags and are used to change the style [...]

Continue reading about A Basic CSS lesson on Selectors, Properties, and Values - CSS Tutorial Lesson Two