The Wordpress theme for this blog
The theme for this blog is based on the ‘2-column Left Menu Fixed’ theme at Tomorrows Laundry. I can’t find an address to thank the author directly, so I’ll have to do it here:
Dear Will
I have used your blank theme 2col_fixed_left as the basis for my new Wordpress blog [1]. Thank you very much for developing these blank themes and for making them available. I’ve put a link to tomorrows laundry in my footer.
I’ve made a few changes to the php files. Most of these are stylistic; the main one is changing
<hn><a>bla</a></hn>to<a><hn>bla</hn></a>, so that the whole heading area acts as a hyperlink - easier to hit with your mouse, I think.There are two other changes:
1. searchform.php, line 1:
original:
<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">resulting html:
<form method="get" id="searchform" action="/~ivan/blog/index.php">changed to:
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">resulting html:
<form method="get" id="searchform" action="http://localhost/~ivan/blog/">
I can’t remember why I made this change now. Both versions seem to work (I don’t know php at all).2. search.php, line 2:
original:
<div id="wrapper'>
changed to:<div id="wrapper">That typo was causing problems.
Thanks again and best wishes
Ivan