diff -urN sandbox-0.9.5/functions.php sandbox-0.9.6/functions.php --- sandbox-0.9.5/functions.php 2007-06-25 21:58:58.000000000 +0200 +++ sandbox-0.9.6/functions.php 2007-08-08 22:25:48.000000000 +0200 @@ -2,7 +2,7 @@ // Produces a list of pages in the header without whitespace -- er, I mean negative space. function sandbox_globalnav() { echo '\n"; } @@ -151,8 +151,7 @@ $user = get_userdata($comment->user_id); // For all registered users, 'byuser'; to specificy the registered user, 'commentauthor+[log in name]' - $c[] = "byuser comment-author-".strtolower($user->user_login); - + $c[] = "byuser comment-author-" . sanitize_title_with_dashes(strtolower($user->user_login)); // For comment authors who are the author of the post if ( $comment->user_id === $post->post_author ) $c[] = 'bypostauthor'; diff -urN sandbox-0.9.5/readme.html sandbox-0.9.6/readme.html --- sandbox-0.9.5/readme.html 2007-06-25 21:07:14.000000000 +0200 +++ sandbox-0.9.6/readme.html 2007-08-08 22:17:00.000000000 +0200 @@ -45,7 +45,7 @@ @@ -584,7 +584,7 @@ diff -urN sandbox-0.9.5/sandbox-layouts/2c-r.css sandbox-0.9.6/sandbox-layouts/2c-r.css --- sandbox-0.9.5/sandbox-layouts/2c-r.css 2007-05-10 00:27:48.000000000 +0200 +++ sandbox-0.9.6/sandbox-layouts/2c-r.css 2007-08-08 22:30:02.000000000 +0200 @@ -4,11 +4,11 @@ */ div#container { float: left; - margin: 0 0 0 -200px; + margin: 0 -200px 0 0; width: 100%; } div#content { - margin: 0 0 0 200px; + margin: 0 200px 0 0; } div.sidebar { float: right; diff -urN sandbox-0.9.5/style.css sandbox-0.9.6/style.css --- sandbox-0.9.5/style.css 2007-06-25 21:07:02.000000000 +0200 +++ sandbox-0.9.6/style.css 2007-08-08 22:30:38.000000000 +0200 @@ -2,7 +2,7 @@ THEME NAME: Sandbox THEME URI: http://www.plaintxt.org/themes/sandbox/ DESCRIPTION: A theme rich with powerful and dynamic semantic class selectors; a canvas for CSS artists -VERSION: 0.9.5 +VERSION: 0.9.6 AUTHOR: Andy Skelton & Scott Allan Wallick AUTHOR URI: */ @@ -32,7 +32,7 @@ .alignleft,div.nav-previous{float: left;} .alignright,div.nav-next{float: right;} form#commentform .form-label{margin:1em 0 0;} -form#commentform span.req-field{background:#fff;color:red;} +form#commentform span.required{background:#fff;color:red;} form#commentform,form#commentform p{padding:0;} input#author,input#email,input#url{width:50%;} input#author,input#email,input#url,textarea#comment{padding:0.2em;}