<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>images/12_col.gif</filename>
    </added>
    <added>
      <filename>images/16_col.gif</filename>
    </added>
    <added>
      <filename>images/blank.gif</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,9 +1,13 @@
 ------------------------------------------------
-README for Designers Default
+README for Designers Default version .3
 ------------------------------------------------
 
 Designers Default is a theme based on Michael Heilemann's default wordpress theme included with Wordpress out of the box. After doing lots of wordpress development, I found myself having to change the same things over and over again and reorganizing the structure and styles over and over again. This theme is really just a compilation of all those changes so I can start with a clean base. I am making it available to the public as I hope someone else may find it useful.
 
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+What New
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
 *************
 Code Changes
 *************
@@ -20,15 +24,25 @@ Code Changes
 10) XHTML 1.0 Strict doctype
 11) Moved About Post data into definition lists
 12) Comments put on each template so you can tell what to edit by looking at the source.
+13) Comments put in the CSS source for quick changes.
 
 
 ***************
 Design Changes
 ***************
 
-1) Header broken into layered transparent images so you can change the color with a simple hex
+1) Header broken into layered transparent images so you can change the color with a simple hex or upload an image to be the background.
 2) Page frame broken into layered transparent images so you can change the color of the background with a simple hex
 3) Added RSS Icons to footer.
-4) Added Calendar and Tag Cloud added to sidebar and styled.
-5) Page width expanded to 1024px which is the standard in page size currently.
-6) Line height on paragraph increased to 1.5
\ No newline at end of file
+4) Added Calendar and Tag Cloud added to sidebar and styled - just so you can see it is there.
+5) Page width expanded to 1024px which is the standard in page width. 
+6) Line height on paragraph increased to 1.5em
+
+
+
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+TO DO
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+1) Implement the right to left styling for persian users.
+2) Get admin functions to work for color changing and picture uploading.
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -3,8 +3,14 @@
 	http://meyerweb.com/eric/thoughts/2007/09/07/diagnostic-styling/
 */
 
-* { border: 1px solid #f00; }
+div, * { border: 3px solid #c2c2c2; }
 
+#page { border: 3px solid pink; }
+#header { border: 3px solid blue; }
+#footer { border: 3px solid purple; }
+#sidebar { border: 3px solid orange; }
+#content { border: 3px solid yellow; }
+.post  { border: 3px solid green; }
 
 img {outline: 5px solid red;}
 img[alt][title] {outline-width: 0;}</diff>
      <filename>debugging.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,416 +1,11 @@
 &lt;?php
 if ( function_exists('register_sidebar') )
-    register_sidebar(array(
+	register_sidebar(array(
         'before_widget' =&gt; '&lt;li id=&quot;%1$s&quot; class=&quot;widget %2$s&quot;&gt;',
         'after_widget' =&gt; '&lt;/li&gt;',
-        'before_title' =&gt; '&lt;h2 class=&quot;widgettitle&quot;&gt;',
-        'after_title' =&gt; '&lt;/h2&gt;',
+        'before_title' =&gt; '',
+        'after_title' =&gt; '',
     ));
 
-function kubrick_head() {
-	$head = &quot;&lt;style type='text/css'&gt;\n&lt;!--&quot;;
-	$output = '';
-	if ( kubrick_header_image() ) {
-		$url =  kubrick_header_image_url() ;
-		$output .= &quot;#header { background: url('$url') no-repeat bottom center; }\n&quot;;
-	}
-	if ( false !== ( $color = kubrick_header_color() ) ) {
-		$output .= &quot;#headerimg h1 a, #headerimg h1 a:visited, #headerimg .description { color: $color; }\n&quot;;
-	}
-	if ( false !== ( $display = kubrick_header_display() ) ) {
-		$output .= &quot;#headerimg { display: $display }\n&quot;;
-	}
-	$foot = &quot;--&gt;&lt;/style&gt;\n&quot;;
-	if ( '' != $output )
-		echo $head . $output . $foot;
-}
-
-add_action('wp_head', 'kubrick_head');
-
-function kubrick_header_image() {
-	return apply_filters('kubrick_header_image', get_option('kubrick_header_image'));
-}
-
-function kubrick_upper_color() {
-	if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) {
-		parse_str(substr($url, strpos($url, '?') + 1), $q);
-		return $q['upper'];
-	} else
-		return '69aee7';
-}
-
-function kubrick_lower_color() {
-	if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) {
-		parse_str(substr($url, strpos($url, '?') + 1), $q);
-		return $q['lower'];
-	} else
-		return '4180b6';
-}
-
-function kubrick_header_image_url() {
-	if ( $image = kubrick_header_image() )
-		$url = get_template_directory_uri() . '/images/' . $image;
-	else
-		$url = get_template_directory_uri() . '/images/kubrickheader.jpg';
-
-	return $url;
-}
-
-function kubrick_header_color() {
-	return apply_filters('kubrick_header_color', get_option('kubrick_header_color'));
-}
-
-function kubrick_header_color_string() {
-	$color = kubrick_header_color();
-	if ( false === $color )
-		return 'white';
-
-	return $color;
-}
-
-function kubrick_header_display() {
-	return apply_filters('kubrick_header_display', get_option('kubrick_header_display'));
-}
-
-function kubrick_header_display_string() {
-	$display = kubrick_header_display();
-	return $display ? $display : 'inline';
-}
-
-add_action('admin_menu', 'kubrick_add_theme_page');
-
-function kubrick_add_theme_page() {
-	if ( isset( $_GET['page'] ) &amp;&amp; $_GET['page'] == basename(__FILE__) ) {
-		if ( isset( $_REQUEST['action'] ) &amp;&amp; 'save' == $_REQUEST['action'] ) {
-			check_admin_referer('kubrick-header');
-			if ( isset($_REQUEST['njform']) ) {
-				if ( isset($_REQUEST['defaults']) ) {
-					delete_option('kubrick_header_image');
-					delete_option('kubrick_header_color');
-					delete_option('kubrick_header_display');
-				} else {
-					if ( '' == $_REQUEST['njfontcolor'] )
-						delete_option('kubrick_header_color');
-					else {
-						$fontcolor = preg_replace('/^.*(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['njfontcolor']);
-						update_option('kubrick_header_color', $fontcolor);
-					}
-					if ( preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njuppercolor'], $uc) &amp;&amp; preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njlowercolor'], $lc) ) {
-						$uc = ( strlen($uc[0]) == 3 ) ? $uc[0]{0}.$uc[0]{0}.$uc[0]{1}.$uc[0]{1}.$uc[0]{2}.$uc[0]{2} : $uc[0];
-						$lc = ( strlen($lc[0]) == 3 ) ? $lc[0]{0}.$lc[0]{0}.$lc[0]{1}.$lc[0]{1}.$lc[0]{2}.$lc[0]{2} : $lc[0];
-						update_option('kubrick_header_image', &quot;header-img.php?upper=$uc&amp;lower=$lc&quot;);
-					}
-
-					if ( isset($_REQUEST['toggledisplay']) ) {
-						if ( false === get_option('kubrick_header_display') )
-							update_option('kubrick_header_display', 'none');
-						else
-							delete_option('kubrick_header_display');
-					}
-				}
-			} else {
-
-				if ( isset($_REQUEST['headerimage']) ) {
-					check_admin_referer('kubrick-header');
-					if ( '' == $_REQUEST['headerimage'] )
-						delete_option('kubrick_header_image');
-					else {
-						$headerimage = preg_replace('/^.*?(header-img.php\?upper=[0-9a-fA-F]{6}&amp;lower=[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['headerimage']);
-						update_option('kubrick_header_image', $headerimage);
-					}
-				}
-
-				if ( isset($_REQUEST['fontcolor']) ) {
-					check_admin_referer('kubrick-header');
-					if ( '' == $_REQUEST['fontcolor'] )
-						delete_option('kubrick_header_color');
-					else {
-						$fontcolor = preg_replace('/^.*?(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['fontcolor']);
-						update_option('kubrick_header_color', $fontcolor);
-					}
-				}
-
-				if ( isset($_REQUEST['fontdisplay']) ) {
-					check_admin_referer('kubrick-header');
-					if ( '' == $_REQUEST['fontdisplay'] || 'inline' == $_REQUEST['fontdisplay'] )
-						delete_option('kubrick_header_display');
-					else
-						update_option('kubrick_header_display', 'none');
-				}
-			}
-			//print_r($_REQUEST);
-			wp_redirect(&quot;themes.php?page=functions.php&amp;saved=true&quot;);
-			die;
-		}
-		add_action('admin_head', 'kubrick_theme_page_head');
-	}
-	add_theme_page(__('Customize Header'), __('Header Image and Color'), 'edit_themes', basename(__FILE__), 'kubrick_theme_page');
-}
-
-function kubrick_theme_page_head() {
 ?&gt;
-&lt;script type=&quot;text/javascript&quot; src=&quot;../wp-includes/js/colorpicker.js&quot;&gt;&lt;/script&gt;
-&lt;script type='text/javascript'&gt;
-// &lt;![CDATA[
-	function pickColor(color) {
-		ColorPicker_targetInput.value = color;
-		kUpdate(ColorPicker_targetInput.id);
-	}
-	function PopupWindow_populate(contents) {
-		contents += '&lt;br /&gt;&lt;p style=&quot;text-align:center;margin-top:0px;&quot;&gt;&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; value=&quot;&lt;?php echo attribute_escape(__('Close Color Picker')); ?&gt;&quot; onclick=&quot;cp.hidePopup(\'prettyplease\')&quot;&gt;&lt;/input&gt;&lt;/p&gt;';
-		this.contents = contents;
-		this.populated = false;
-	}
-	function PopupWindow_hidePopup(magicword) {
-		if ( magicword != 'prettyplease' )
-			return false;
-		if (this.divName != null) {
-			if (this.use_gebi) {
-				document.getElementById(this.divName).style.visibility = &quot;hidden&quot;;
-			}
-			else if (this.use_css) {
-				document.all[this.divName].style.visibility = &quot;hidden&quot;;
-			}
-			else if (this.use_layers) {
-				document.layers[this.divName].visibility = &quot;hidden&quot;;
-			}
-		}
-		else {
-			if (this.popupWindow &amp;&amp; !this.popupWindow.closed) {
-				this.popupWindow.close();
-				this.popupWindow = null;
-			}
-		}
-		return false;
-	}
-	function colorSelect(t,p) {
-		if ( cp.p == p &amp;&amp; document.getElementById(cp.divName).style.visibility != &quot;hidden&quot; )
-			cp.hidePopup('prettyplease');
-		else {
-			cp.p = p;
-			cp.select(t,p);
-		}
-	}
-	function PopupWindow_setSize(width,height) {
-		this.width = 162;
-		this.height = 210;
-	}
-
-	var cp = new ColorPicker();
-	function advUpdate(val, obj) {
-		document.getElementById(obj).value = val;
-		kUpdate(obj);
-	}
-	function kUpdate(oid) {
-		if ( 'uppercolor' == oid || 'lowercolor' == oid ) {
-			uc = document.getElementById('uppercolor').value.replace('#', '');
-			lc = document.getElementById('lowercolor').value.replace('#', '');
-			hi = document.getElementById('headerimage');
-			hi.value = 'header-img.php?upper='+uc+'&amp;lower='+lc;
-			document.getElementById('header').style.background = 'url(&quot;&lt;?php echo get_template_directory_uri(); ?&gt;/images/'+hi.value+'&quot;) center no-repeat';
-			document.getElementById('advuppercolor').value = '#'+uc;
-			document.getElementById('advlowercolor').value = '#'+lc;
-		}
-		if ( 'fontcolor' == oid ) {
-			document.getElementById('header').style.color = document.getElementById('fontcolor').value;
-			document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value;
-		}
-		if ( 'fontdisplay' == oid ) {
-			document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
-		}
-	}
-	function toggleDisplay() {
-		td = document.getElementById('fontdisplay');
-		td.value = ( td.value == 'none' ) ? 'inline' : 'none';
-		kUpdate('fontdisplay');
-	}
-	function toggleAdvanced() {
-		a = document.getElementById('jsAdvanced');
-		if ( a.style.display == 'none' )
-			a.style.display = 'block';
-		else
-			a.style.display = 'none';
-	}
-	function kDefaults() {
-		document.getElementById('headerimage').value = '';
-		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#69aee7';
-		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#4180b6';
-		document.getElementById('header').style.background = 'url(&quot;&lt;?php echo get_template_directory_uri(); ?&gt;/images/kubrickheader.jpg&quot;) center no-repeat';
-		document.getElementById('header').style.color = '#FFFFFF';
-		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '';
-		document.getElementById('fontdisplay').value = 'inline';
-		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
-	}
-	function kRevert() {
-		document.getElementById('headerimage').value = '&lt;?php echo js_escape(kubrick_header_image()); ?&gt;';
-		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#&lt;?php echo js_escape(kubrick_upper_color()); ?&gt;';
-		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#&lt;?php echo js_escape(kubrick_lower_color()); ?&gt;';
-		document.getElementById('header').style.background = 'url(&quot;&lt;?php echo js_escape(kubrick_header_image_url()); ?&gt;&quot;) center no-repeat';
-		document.getElementById('header').style.color = '';
-		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '&lt;?php echo js_escape(kubrick_header_color_string()); ?&gt;';
-		document.getElementById('fontdisplay').value = '&lt;?php echo js_escape(kubrick_header_display_string()); ?&gt;';
-		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
-	}
-	function kInit() {
-		document.getElementById('jsForm').style.display = 'block';
-		document.getElementById('nonJsForm').style.display = 'none';
-	}
-	addLoadEvent(kInit);
-// ]]&gt;
-&lt;/script&gt;
-&lt;style type='text/css'&gt;
-	#headwrap {
-		text-align: center;
-	}
-	#kubrick-header {
-		font-size: 80%;
-	}
-	#kubrick-header .hibrowser {
-		width: 780px;
-		height: 260px;
-		overflow: scroll;
-	}
-	#kubrick-header #hitarget {
-		display: none;
-	}
-	#kubrick-header #header h1 {
-		font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
-		font-weight: bold;
-		font-size: 4em;
-		text-align: center;
-		padding-top: 70px;
-		margin: 0;
-	}
 
-	#kubrick-header #header .description {
-		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
-		font-size: 1.2em;
-		text-align: center;
-	}
-	#kubrick-header #header {
-		text-decoration: none;
-		color: &lt;?php echo kubrick_header_color_string(); ?&gt;;
-		padding: 0;
-		margin: 0;
-		height: 200px;
-		text-align: center;
-		background: url('&lt;?php echo kubrick_header_image_url(); ?&gt;') center no-repeat;
-	}
-	#kubrick-header #headerimg {
-		margin: 0;
-		height: 200px;
-		width: 100%;
-		display: &lt;?php echo kubrick_header_display_string(); ?&gt;;
-	}
-	#jsForm {
-		display: none;
-		text-align: center;
-	}
-	#jsForm input.submit, #jsForm input.button, #jsAdvanced input.button {
-		padding: 0px;
-		margin: 0px;
-	}
-	#advanced {
-		text-align: center;
-		width: 620px;
-	}
-	html&gt;body #advanced {
-		text-align: center;
-		position: relative;
-		left: 50%;
-		margin-left: -380px;
-	}
-	#jsAdvanced {
-		text-align: right;
-	}
-	#nonJsForm {
-		position: relative;
-		text-align: left;
-		margin-left: -370px;
-		left: 50%;
-	}
-	#nonJsForm label {
-		padding-top: 6px;
-		padding-right: 5px;
-		float: left;
-		width: 100px;
-		text-align: right;
-	}
-	.defbutton {
-		font-weight: bold;
-	}
-	.zerosize {
-		width: 0px;
-		height: 0px;
-		overflow: hidden;
-	}
-	#colorPickerDiv a, #colorPickerDiv a:hover {
-		padding: 1px;
-		text-decoration: none;
-		border-bottom: 0px;
-	}
-&lt;/style&gt;
-&lt;?php
-}
-
-function kubrick_theme_page() {
-	if ( isset( $_REQUEST['saved'] ) ) echo '&lt;div id=&quot;message&quot; class=&quot;updated fade&quot;&gt;&lt;p&gt;&lt;strong&gt;'.__('Options saved.').'&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;';
-?&gt;
-&lt;div class='wrap'&gt;
-	&lt;div id=&quot;kubrick-header&quot;&gt;
-	&lt;h2&gt;&lt;?php _e('Header Image and Color'); ?&gt;&lt;/h2&gt;
-		&lt;div id=&quot;headwrap&quot;&gt;
-			&lt;div id=&quot;header&quot;&gt;
-				&lt;div id=&quot;headerimg&quot;&gt;
-					&lt;h1&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/h1&gt;
-					&lt;div class=&quot;description&quot;&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/div&gt;
-				&lt;/div&gt;
-			&lt;/div&gt;
-		&lt;/div&gt;
-		&lt;br /&gt;
-		&lt;div id=&quot;nonJsForm&quot;&gt;
-			&lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
-				&lt;?php wp_nonce_field('kubrick-header'); ?&gt;
-				&lt;div class=&quot;zerosize&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;defaultsubmit&quot; value=&quot;&lt;?php echo attribute_escape(__('Save')); ?&gt;&quot; /&gt;&lt;/div&gt;
-					&lt;label for=&quot;njfontcolor&quot;&gt;&lt;?php _e('Font Color:'); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;njfontcolor&quot; id=&quot;njfontcolor&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_color()); ?&gt;&quot; /&gt; &lt;?php printf(__('Any CSS color (%s or %s or %s)'), '&lt;code&gt;red&lt;/code&gt;', '&lt;code&gt;#FF0000&lt;/code&gt;', '&lt;code&gt;rgb(255, 0, 0)&lt;/code&gt;'); ?&gt;&lt;br /&gt;
-					&lt;label for=&quot;njuppercolor&quot;&gt;&lt;?php _e('Upper Color:'); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;njuppercolor&quot; id=&quot;njuppercolor&quot; value=&quot;#&lt;?php echo attribute_escape(kubrick_upper_color()); ?&gt;&quot; /&gt; &lt;?php printf(__('HEX only (%s or %s)'), '&lt;code&gt;#FF0000&lt;/code&gt;', '&lt;code&gt;#F00&lt;/code&gt;'); ?&gt;&lt;br /&gt;
-				&lt;label for=&quot;njlowercolor&quot;&gt;&lt;?php _e('Lower Color:'); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;njlowercolor&quot; id=&quot;njlowercolor&quot; value=&quot;#&lt;?php echo attribute_escape(kubrick_lower_color()); ?&gt;&quot; /&gt; &lt;?php printf(__('HEX only (%s or %s)'), '&lt;code&gt;#FF0000&lt;/code&gt;', '&lt;code&gt;#F00&lt;/code&gt;'); ?&gt;&lt;br /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;hi&quot; id=&quot;hi&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_image()); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;submit&quot; name=&quot;toggledisplay&quot; id=&quot;toggledisplay&quot; value=&quot;&lt;?php echo attribute_escape(__('Toggle Text')); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;submit&quot; name=&quot;defaults&quot; value=&quot;&lt;?php echo attribute_escape(__('Use Defaults')); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;submit&quot; class=&quot;defbutton&quot; name=&quot;submitform&quot; value=&quot;&amp;nbsp;&amp;nbsp;&lt;?php _e('Save'); ?&gt;&amp;nbsp;&amp;nbsp;&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;save&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;njform&quot; value=&quot;true&quot; /&gt;
-			&lt;/form&gt;
-		&lt;/div&gt;
-		&lt;div id=&quot;jsForm&quot;&gt;
-			&lt;form style=&quot;display:inline;&quot; method=&quot;post&quot; name=&quot;hicolor&quot; id=&quot;hicolor&quot; action=&quot;&lt;?php echo attribute_escape($_SERVER['REQUEST_URI']); ?&gt;&quot;&gt;
-				&lt;?php wp_nonce_field('kubrick-header'); ?&gt;
-	&lt;input type=&quot;button&quot;  class=&quot;button-secondary&quot; onclick=&quot;tgt=document.getElementById('fontcolor');colorSelect(tgt,'pick1');return false;&quot; name=&quot;pick1&quot; id=&quot;pick1&quot; value=&quot;&lt;?php echo attribute_escape(__('Font Color')); ?&gt;&quot;&gt;&lt;/input&gt;
-		&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; onclick=&quot;tgt=document.getElementById('uppercolor');colorSelect(tgt,'pick2');return false;&quot; name=&quot;pick2&quot; id=&quot;pick2&quot; value=&quot;&lt;?php echo attribute_escape(__('Upper Color')); ?&gt;&quot;&gt;&lt;/input&gt;
-		&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; onclick=&quot;tgt=document.getElementById('lowercolor');colorSelect(tgt,'pick3');return false;&quot; name=&quot;pick3&quot; id=&quot;pick3&quot; value=&quot;&lt;?php echo attribute_escape(__('Lower Color')); ?&gt;&quot;&gt;&lt;/input&gt;
-				&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; name=&quot;revert&quot; value=&quot;&lt;?php echo attribute_escape(__('Revert')); ?&gt;&quot; onclick=&quot;kRevert()&quot; /&gt;
-				&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; value=&quot;&lt;?php echo attribute_escape(__('Advanced')); ?&gt;&quot; onclick=&quot;toggleAdvanced()&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;save&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;fontdisplay&quot; id=&quot;fontdisplay&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_display()); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;fontcolor&quot; id=&quot;fontcolor&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_color()); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;uppercolor&quot; id=&quot;uppercolor&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_upper_color()); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;lowercolor&quot; id=&quot;lowercolor&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_lower_color()); ?&gt;&quot; /&gt;
-				&lt;input type=&quot;hidden&quot; name=&quot;headerimage&quot; id=&quot;headerimage&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_image()); ?&gt;&quot; /&gt;
-				&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submitform&quot; class=&quot;defbutton&quot; value=&quot;&lt;?php echo attribute_escape(__('Update Header')); ?&gt;&quot; onclick=&quot;cp.hidePopup('prettyplease')&quot; /&gt;&lt;/p&gt;
-			&lt;/form&gt;
-			&lt;div id=&quot;colorPickerDiv&quot; style=&quot;z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;&quot;&gt; &lt;/div&gt;
-			&lt;div id=&quot;advanced&quot;&gt;
-				&lt;form id=&quot;jsAdvanced&quot; style=&quot;display:none;&quot; action=&quot;&quot;&gt;
-					&lt;?php wp_nonce_field('kubrick-header'); ?&gt;
-					&lt;label for=&quot;advfontcolor&quot;&gt;&lt;?php _e('Font Color (CSS):'); ?&gt; &lt;/label&gt;&lt;input type=&quot;text&quot; id=&quot;advfontcolor&quot; onchange=&quot;advUpdate(this.value, 'fontcolor')&quot; value=&quot;&lt;?php echo attribute_escape(kubrick_header_color()); ?&gt;&quot; /&gt;&lt;br /&gt;
-					&lt;label for=&quot;advuppercolor&quot;&gt;&lt;?php _e('Upper Color (HEX):');?&gt; &lt;/label&gt;&lt;input type=&quot;text&quot; id=&quot;advuppercolor&quot; onchange=&quot;advUpdate(this.value, 'uppercolor')&quot; value=&quot;#&lt;?php echo attribute_escape(kubrick_upper_color()); ?&gt;&quot; /&gt;&lt;br /&gt;
-					&lt;label for=&quot;advlowercolor&quot;&gt;&lt;?php _e('Lower Color (HEX):'); ?&gt; &lt;/label&gt;&lt;input type=&quot;text&quot; id=&quot;advlowercolor&quot; onchange=&quot;advUpdate(this.value, 'lowercolor')&quot; value=&quot;#&lt;?php echo attribute_escape(kubrick_lower_color()); ?&gt;&quot; /&gt;&lt;br /&gt;
-					&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; name=&quot;default&quot; value=&quot;&lt;?php echo attribute_escape(__('Select Default Colors')); ?&gt;&quot; onclick=&quot;kDefaults()&quot; /&gt;&lt;br /&gt;
-					&lt;input type=&quot;button&quot; class=&quot;button-secondary&quot; onclick=&quot;toggleDisplay();return false;&quot; name=&quot;pick&quot; id=&quot;pick&quot; value=&quot;&lt;?php echo attribute_escape(__('Toggle Text Display')); ?&gt;&quot;&gt;&lt;/input&gt;&lt;br /&gt;
-				&lt;/form&gt;
-			&lt;/div&gt;
-		&lt;/div&gt;
-	&lt;/div&gt;
-&lt;/div&gt;
-&lt;?php } ?&gt;</diff>
      <filename>functions.php</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@
 
 // This must be a path to a blank image, relative to the HTML document(s).
 // In production use I suggest '/images/blank.gif' or similar. That's all!
-if (typeof blankImg == 'undefined') var blankImg = '/img/blank.gif';
+if (typeof blankImg == 'undefined') var blankImg = 'images/blank.gif';
 
 
 </diff>
      <filename>iepngfix.htc</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>images/psd/header_window.psd</filename>
    </modified>
    <modified>
      <diff>@@ -4,15 +4,26 @@ Template Name: Links
 */
 ?&gt;
 
+
+&lt;!-- links.php start --&gt;
+
 &lt;?php get_header(); ?&gt;
 
-&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;
+		&lt;div id=&quot;main_wrapper&quot;&gt;
+			
+			&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;
 
-&lt;h2&gt;Links:&lt;/h2&gt;
-&lt;ul&gt;
-&lt;?php wp_list_bookmarks(); ?&gt;
-&lt;/ul&gt;
+				&lt;h2&gt;Links:&lt;/h2&gt;
+				&lt;ul&gt;
+					&lt;?php wp_list_bookmarks(); ?&gt;
+				&lt;/ul&gt;
 
-&lt;/div&gt;
+			&lt;/div&gt;
+			
+			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+			
+		&lt;/div&gt;
 
 &lt;?php get_footer(); ?&gt;
+
+&lt;!-- links.php end --&gt;</diff>
      <filename>links.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,75 @@
 /*
-Theme Name: Designers Default
-Theme URI: http://www.poweredbygeek/
-Description: Based on the default Wordpress theme by Michael Heilemann (http://binarybonsai.com/), this theme is redone to be a starting place for web designers.
-Version: 1.0
-Author: Lynn Wallenstein
-Author URI: http://www.poweredbygeek.com/
-Tags: blue, custom header, fixed width, two columns, widgets
-*/
-
-/****** GLOBAL ******/
-
-p, dl, hr, ol, ul, pre, table, address, fieldset {
-	margin-bottom: 20px;
+main.css - You will probably want to do your changes here.
+
+/*------------------------------------------------------------------
+[Table of Contents]
+
+1. Global Attributes
+	1.1. Body
+	1.2. Links 
+	1.3. Headers
+	1.4  Misc - Listed Alphabetically
+2. Structure
+	2.1. Page / #page
+		+ 2.1.1 Header / #header
+		+ 2.1.2 Wrapper / #main_wrapper
+			+ 2.1.2.1 Content / #content
+				+ 2.1.2.1.1 Post / .post
+			+ 2.1.2.2 Sidebar / #sidebar
+		+ 2.1.3. Footer / #footer
+3. Component Classes
+	3.1 Calendar
+	3.2 Images
+	3.3 Captions
+4. Helpful Classes - Listed Alphabetrically
+-------------------------------------------------------------------*/
+
+/*------------------------------------------------------------------ 
+[Color codes] 
+
+Background: #eee (grey) 
+H1:  #ffffff (white) 
+H2:  #333 (blue) 
+Header Background Color: #333 (blue)
+a (standard):   #06c (blue) 
+a (hover): #147 (blue) 
+-------------------------------------------------------------------*/   
+
+
+
+/* `1. Global Attributes
+----------------------------------------------------------------------------------------------------*/
+
+/* 1.1 - BODY */
+
+
+body {
+	font-size: 62.5%; /* Resets 1em to 10px */
+	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	background: #eee; /* CHANGE THIS COLOR TO CHANGE THE BACKGROUND OF THE PAGE */
+	color: #333;
+	text-align: center;
+	margin: 0 0 20px 0;
+	padding: 0;
 }
 
-/* HEADERS */
+
+/* 1.2 - LINKS */
+
+a {
+	color: #06c;
+	text-decoration: none;
+}
+	a:hover {
+		color: #147;
+		text-decoration: underline;
+	}
+	a img {
+		border: none;
+	}
+
+
+/* 1.3 - HEADERS */
 
 h1 {
 	font-weight: 100;
@@ -67,23 +122,8 @@ h3 {
 		margin: 40px auto 20px ;
 	}
 
-/* LINKS */
-
-a {
-	color: #06c;
-	text-decoration: none;
-}
-	a:hover {
-		color: #147;
-		text-decoration: underline;
-	}
-	a img {
-		border: none;
-	}
-	
-	
-/*  RANDOM - LISTED ALPHABETICALLY */
 
+/* 1.4 - MISC - LISTED ALPHABETICALLY */
 
 abbr {
 	border-bottom: 1px dashed #999;
@@ -91,6 +131,9 @@ abbr {
 	font-size: 0.9em;
 	letter-spacing: .07em;
 }
+address {
+	margin-bottom: 20px;
+}
 
 acronym {
 	border-bottom: 1px dashed #999;
@@ -113,15 +156,30 @@ blockquote {
 code {
 	font: 1.1em 'Courier New', Courier, Fixed;
 }
-
+dl {
+	margin-bottom: 20px;
+}
+dt {
+	margin-left: 10px;
+}
+fieldset {
+	margin-bottom: 20px;
+}
 hr {
 	display: none;
 }
-
+ol {
+	margin-bottom: 20px;
+}
 ol li {
 	list-style: decimal outside;
 }
-
+p {
+	margin-bottom: 20px;
+}
+pre {
+	margin-bottom: 20px;
+}
 select {
 	width: 130px;
 }
@@ -142,56 +200,18 @@ span {}
 strike {
 	color: #777;
 }
-
-
-/* VARIOUS TAGS AND CLASSS - LISTED ALPHABETICALLY */
-
-.aligncenter, div.aligncenter {
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-}
-
-.alignleft {
-	float: left;
-}
-
-.alignright {
-	float: right;
-}
-
-.center {
-	text-align: center;
-}
-
-.clear {
-	clear: both;
+table {
+	margin-bottom: 20px;
 }
-
-.hidden {
-	display: none;
+ul {
+	margin-bottom: 20px;
 }
 
 
+/* `2. Structure
+----------------------------------------------------------------------------------------------------*/
 
-
-
-
-
-
-/****** STRUCTURE ******/
-
-body {
-	font-size: 62.5%; /* Resets 1em to 10px */
-	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
-	background: #eee;
-	color: #333;
-	text-align: center;
-	margin: 0 0 20px 0;
-	padding: 0;
-}
-
-/* PAGE */
+/* 2.1 - PAGE */
 
 	#page {
 		text-align: left;
@@ -206,7 +226,7 @@ body {
 			background: url('images/page_background_rtl.png');
 		}
 
-/* HEADER */
+/* 2.1.1 - HEADER */
 
 		#header {
 			background: url('images/header_background.png') no-repeat top center;
@@ -216,29 +236,31 @@ body {
 			height: 194px;
 			width: 960px;
 		}
-		
+			#header .description {
+				font-size: 1.2em;
+				text-align: center;
+				text-decoration: none;
+				color: white;
+			}
 			#headerimg 	{
-				background: #73a0c5 url('images/feed.png') bottom center;
+				background: #333; /* CHANGE THIS COLOR OR ADD AN IMAGE TO CHANGE THE HEADER BACKGROUND - url('images/image.png') no-repeat top center; */
 				margin: 0px 14px;
 				height: 194px;
 			}
-				#header .description {
-					font-size: 1.2em;
-					text-align: center;
-					text-decoration: none;
-					color: white;
-				}
 				#header_window 	{
 					background: url('images/header_window.png') no-repeat bottom center;
 					height: 194px;
 				}
 				
-/* CONTENT */
+/* 2.1.2 - MAIN WRAPPER */
 
 		#main_wrapper {
 			background: url('images/page_background.png') repeat-y top center;
 			margin: 0;
 		}
+		
+/* 2.1.2.1 - CONTENT */
+		
 			#content {
 				font-size: 1.2em
 			}
@@ -276,7 +298,7 @@ body {
 				margin-top: 10px;
 				margin-bottom: 60px;
 			}
-/* POST */
+/* 2.1.2.1.1 - POST */
 				.post {
 					margin: 0 0 40px;
 					text-align: justify;				
@@ -290,7 +312,7 @@ body {
 					.post p {
 						line-height: 1.5em;
 					}
-/* ENTRY */			
+/* 2.1.2.1.1.1 - ENTRY */		
 					.entry {}
 						.entry p a:visited {
 							color: #b85b5a;
@@ -351,7 +373,7 @@ body {
 							margin: 0;
 							padding: 10px;
 						}
-/* COMMENTLIST */					
+/* 2.1.2.1.1.2 - COMMENTLIST */						
 					.commentlist {
 						padding: 0;
 						text-align: justify;
@@ -414,7 +436,7 @@ body {
 						padding: 0;
 						color: #777;
 					}
-/* SIDEBAR */		
+/* 2.1.2.2- SIDEBAR */		
 			#sidebar {
 				padding: 20px 0 10px 0;
 				float: right;
@@ -480,7 +502,7 @@ body {
 						content: &quot;\00BB \0020&quot;;
 				}
 
-/* FOOTER */
+/* 2.1.3.2- FOOTER */
 
 		#footer {
 			padding: 0;
@@ -500,8 +522,12 @@ body {
 				text-align: center;
 				padding-bottom: 20px;
 			}
+			
+			
+/* `3. Components
+----------------------------------------------------------------------------------------------------*/			
 
-/****** CALENDAR ******/
+/* 3.1 - CALENDAR */
 
 #wp-calendar {
 	empty-cells: show;
@@ -549,7 +575,7 @@ body {
 	}
 
 
-/****** IMAGES ******/
+/* 3.2 - IMAGES */
 
 p img {
 	max-width: 100%;
@@ -575,7 +601,7 @@ img.alignleft {
 
 
 
-/****** CAPTIONS ******/
+/* 3.3 - CAPTIONS */
 
 
 .wp-caption {
@@ -599,3 +625,34 @@ img.alignleft {
 		margin: 0;
 	}
 
+
+
+/* `3. Helpful Classes - Listed Alphaberically
+----------------------------------------------------------------------------------------------------*/	
+
+.aligncenter, div.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.alignleft {
+	float: left;
+}
+
+.alignright {
+	float: right;
+}
+
+.center {
+	text-align: center;
+}
+
+.clear {
+	clear: both;
+}
+
+.hidden {
+	display: none;
+}
+</diff>
      <filename>main.css</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 Theme Name: Designers Default
 Theme URI: http://www.poweredbygeek/
 Description: Based on the default Wordpress theme, this theme is redone to be a starting place for web designers.
-Version: 1.0
+Version: 0.3
 Author: Lynn Wallenstein
 Author URI: http://www.poweredbygeek.com/
 Tags: blue, custom header, fixed width, two columns, widgets
@@ -17,9 +17,9 @@ Tags: blue, custom header, fixed width, two columns, widgets
 /* http://960.gs/ */
 @import &quot;960.css&quot;;
 
-/* This is where you will want to do most of your changes */
+/******* This is where you will want to do most of your changes ******/
 @import &quot;main.css&quot;;
 
 /* Uncomment this for debugging */
-/* @import &quot;debugging.css&quot;; */ 
+/* @import &quot;debugging.css&quot;; */
 </diff>
      <filename>style.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>16cc7d7365eaabc6add7366f9ffbde3529b7869c</id>
    </parent>
  </parents>
  <author>
    <name>Lynn Wallenstein</name>
    <email>lwallenstein@gmail.com</email>
  </author>
  <url>http://github.com/lwallenstein/designers-default/commit/46638f2f169485dfb41ba35c0973aeea6107a5b1</url>
  <id>46638f2f169485dfb41ba35c0973aeea6107a5b1</id>
  <committed-date>2008-11-23T01:19:12-08:00</committed-date>
  <authored-date>2008-11-23T01:19:12-08:00</authored-date>
  <message>Cleaned up CSS with comments</message>
  <tree>9d5b40f1432db6992d09be95c1f21dce26bdabff</tree>
  <committer>
    <name>Lynn Wallenstein</name>
    <email>lwallenstein@gmail.com</email>
  </committer>
</commit>
