Center Multiple DIVs with CSS
At some point, you may have a situation where you want to center multiple elements (maybe <div> elements, or other block elements) on a single line in a fixed-width area. Centering a single element in a fixed area is easy. Just add margin: auto and a fixed width to the element you want to center, and the margins will force the element to center.
There really should be a similar simple way to center multiple elements evenly spaced. It would be nice if CSS had a property called “box-align” which you could set to “center” then the child elements would be centered evenly within their parent.
Well, you can achieve something similar by taking advantage of CSS’s flexibity with “recasting” elements (for lack of a better term).
Print This Post
Better Page Corner Ads with CSS3 Transforms
The other day I came across a useful site called ScriptSrc.net that allows you to get up-to-date script tag links that point to your favourite JavaScript libraries.
The site has a clickable corner ad promo to get people to “spread the word”. I thought using CSS3 there would be a better way to position such a corner advertisement (or promo, or whatever), because the clickable area for the ad on ScriptSrc.net is actually too big. In some cases, you might prefer the clickable area to be bigger, but I think it’s always best to keep the clickable area limited to the actual ad.
Print This Post
CSS Shortcuts
When writing your CSS, it is possible to write neater, more readable code by making use of CSS shortcuts. A shortcut is a feature of CSS that allows the developer to specify a number of related properties on a single line rather than specify them all separately. Lets look at the following example:
Print This Post
Intel e1000e Corruption Fixed – Already in openSUSE 11.1 Beta2 (with exception of Debug, Vanilla Kernels)

The patches we did for the Intel e1000e network card for Beta2 protect the chip so that the NVRAM could not get corrupted anymore and we indeed did not receive any new bug reports and could not reproduce the bug anymore on our systems.
Print This Post
Community Addons Directory Launched
Addons & User Contributions are modules and code modifications that users have made to WHMCS to add additional functionality and have then documented and released for the benefit of others. WHMCS facilitates these extensions through the use of template files, action hooks, custom pages & modular gateways/provisioning/registrar systems.
Print This Post
AJAX Using Prototype
Getting Started
Do you want to take the leap into the world of Ajax (Asynchronous JavaScript and XML) but don't know where to begin. Well I was in your situation. I came across prototype.js a nifty little JavaScript file that makes Ajax calls so easy you can do it within a few minutes. The first step you need to do is download the prototype.js file from http://www.prototypejs.org/. Put this JavaScript file in the directory of the website you wish to add Ajax to. The next step is implementing the Ajax.
Print This Post
Introduction to OOP
First things first, OOP stands for Object Oriented Programming.
A class is a group of functions and variables.
Print This Post
2 Column Layout
A common problem in CSS is the fact that if you float a div on either side of a body of text. The div will expand to fit the content. WEll how would you get your div to get to appear like its actually going all the way down the page? SIMPLE!
Print This Post
Tikier Coupon Code 25off
Use the coupon code: 250ff and you will get 50% with any shared hosting plans.
Print This Post

Creating a guestbook
Posted by admin
In this tutorial I will show you how to create a simple guestbook where your visitors can leave messages which are stored in a MySQL database. It contains the basic functions and security settings.