7 Feb 2007 > 4 Comments
To get the code, copy the source from the live preview or visit ocgfx and copy and paste it from there.
18 Nov 2006 > 0 Comments
There are 6 Heading tags (<h1>-<h6>), designed to be used in numerical order on a web page.
5 Dec 2006 > 0 Comments
5 Jan 2009 > 4 Comments
A <div>/CSS based Template Tutorial.
Before starting this tutorial you need to choose a <!DOCTYPE> that informs the browser what type of mark up language you are using. I recommend using either a HTML 4 (Strict) or XHTML (strict) doctype.
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN”
“http://www.w3.org/TR/html4/strict.dtd”>
<html lang=”en”>
<head>
<title>html document</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
<link rel=”stylesheet” type=”text/css” href=”" media=”screen” >
</head>
<body>
</body>
</html>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html lang=”en” xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title>html document</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″ />
<link rel=”stylesheet” type=”text/css” href=”style.css” media=”screen” />
</head>
<body>
</body>
</html>
It’s good practice to check your HTML and CSS documents using the online validators.
17 Nov 2006 > 6 Comments
I’ll kick start this tutorial by dividing the main layout of the template into divisions using <div> tags. Typically, these divisions are given unique identities using the id="" attribute, for example :
27 May 2006 > 0 Comments
I’ve been working on the Pb templates page today. I have three lists all floating left in a row. The problem was when I hovered over a link in the list, the icon in the list to the right would vanish. Grrr!
19 Nov 2006 > 4 Comments
The <img> tag doesn’t actually contain anything. Images are displayed by using the src (source) attribute, accompanied with some alternate text using the alt attribute.
9 May 2006 > 0 Comments
I wanted to add 10px height <div>isions to the top and bottom of another <div> so I could have some head and base images.
31 May 2006 > 0 Comments
There are four pseudo classes that can be used to style your links. These are;
25 Nov 2006 > 0 Comments
So far the template looks pretty untidy. The content needs to be spaced out a bit, using the padding: and margin: properties in the stylesheet.
11 Mar 2007 > 0 Comments
I was too lazy to fix this at the time, but after remedying another design flaw I discovered in Opera, I decided to do something about it, and really, it was totally simple.
19 Nov 2006 > 5 Comments
Lists are used to display a group of List Items (<li>) that are in some way related to each other. The two main list types are Unordered (<ul>), and Ordered (<ol>).
10 Apr 2007 > 3 Comments
This is an unusual bug that I haven’t seen before, caused in Internet Explorer 6 and 7. When I applied the width property and value to the <li> selector, all the numbers in an ordered list become 1.

I googled for a solution and found it in the comment thread to this post..
Adding display:list-item; restored everything back to normality.

15 Dec 2006 > 2 Comments
I wanted to float the search box on the right of the body of the webpage, by adding an ID to the form element, and using float:right; in the stylesheet.
1 Jun 2006 > 0 Comments
You can reduce (or increase) the size of your table cell backgrounds using the CSS property padding.
10 Dec 2006 > 0 Comments
The vertical columns (#c2, #c3, #c4) in the template can easily be rearranged by changing the value of the float property in the stylesheet.
7 Jun 2006 > 0 Comments
You can use CSS to style form elements, such as <input> and <textarea>.
21 Nov 2006 > 0 Comments
Horizontal rules are used to divide content. But without styling, horizontal rules look pretty awful.
21 Nov 2006 > 0 Comments
Tables are used to display tabular data.
28 Nov 2006 > 0 Comments
18 Dec 2006 > 6 Comments
I wanted to use this method to hide the hyperlink text while displaying an image, but it wasn’t having any effect. I messed around with the stylesheet trying to locate the problem, and finally figured out that the containing element had the property and value text-align:right;, and it was conflicting (for some reason) with the text-indent value. Including text-align:left; along with text-indent: -9999px; resolved the conflict, and the text disappeared
2 Nov 2006 > 0 Comments
I checked version four in various browsers, and found a tiny problem in Opera. In div#c1 I have h1 and li a set to the same width, but the heading was a pixel short.
Mahud Version 5 © 2006-2008 > powered by Mr Whippy Wordpress