Go to content

DON'T PANIC Page looking weird? Don't worry.

Either you turned styles off (in which case you might want to turn them back on again), you have CSS disabled or you are using a user agent incapable of rendering stylesheets properly.

You can also view the site in the oldschool 2006 style if you are mental like that.


Changelog

This is where I will try to document all the changes made to the site. Sometimes I'll make lots of changes, sometimes i'll make little tweaks.

Changed Comments Form

1076 days ago

The default Textpattern comments form is table based, and it needn’t be – so I’ve pulled out all the table tags (table, tr, td) for the time being.

the mark-up is...

<div id="commentform">
    <label for="name"><txp:text item="name" /></label><txp:comment_name_input /><txp:comment_remember /><br />
    <label for="email"><txp:text item="email" /></label><txp:comment_email_input /><br />
    <label for="web">http://</label><txp:comment_web_input /><br />
    <div id="message">
        <label for="message"><txp:text item="message" /></label><txp:comment_message_input />
    </div>
    <p><txp:comments_help /></p>
    
    <div class="buttons">
    <txp:comment_preview /><txp:comment_submit />
    </div>
</div>

Forms are difficult to lay out with CSS but luckily the comments form is very simple. I'll be consulting the wiki at css-discuss to find the best way to approach this.

Conditional Comments