Archive for September, 2006

Working with Pages in WordPress

WordPress allows you to create ‘Pages’ within the wordpress blog.
Anytime you want to write something like an about page / a contact page / an article page, you would use this feature.
Most of our themes displays a list of pages as navigational elements at the top. We use the wp_list_pages() method, so any new page [...]

Terra Firma : New Theme

I am proud to annouce the release of a new theme.
it is 2-column, widget-ready, fixed width theme.
Visit TerraFirma now.

Coffee Spot : New Theme

I am proud to annouce the release of a new theme.
it is 2-column, widget-ready, fixed width theme.
Visit CoffeeSpot now.

Font Sizes and Accessibility

Lets take a closer look at the font-size property in CSS.
You might have seen this following piece of code in some theme’s style.css file.
#content h2 { font-size:1.4em;}
or this
#content h2 { font-size:14px;}
or this
#content h2 { font-size:10pt;}
What is the difference between all of these ? which one is better ?
In reality, [...]