diff -c mandigo-1.29/README.txt mandigo-1.30/README.txt *** mandigo-1.29/README.txt 2007-12-04 14:12:08.000000000 -0500 --- mandigo-1.30/README.txt 2008-01-05 12:03:56.000000000 -0500 *************** *** 277,282 **** --- 277,283 ---- Polish: Mateusz Baran Portuguese (PT): Rodrigo Neves Portuguese (BR): Oscar Nogueira Neto + Romanian: Victor Butiu Russian: Michael Dolgov Serbian: Aleksandar Duric Slovak: Marek, Marian Trnka *************** *** 302,307 **** --- 303,324 ---- === CHANGELOG ========================================================================== + 1.30 + + language: Romanian (ro) + + added a color picker to the Options page + + added support for categories description + + defined font-size for regular header tags (h1-h6) + + added options to try and fix issues with columns showing up wider than they should + + added options to display trackbacks above/below/along with comments or not at all + * grammar fixes: German (de_DE) + * grammar fixes: Polish (pl_PL) + * fixed the image resizing function for IE + * fixed widget titles not showing up as bold when wrapped in divs + * fixed a backward compatiblity issue with "edit comment" links + * only show the link to edit a comment to users who can actually edit comments + * the .noborder class is now inheritable from parent elements + * PNG transparency in IE is now handled by a custom version of jquery.ifixpng + 1.29 + language: Croatian (hr) + language: Japanese UTF-8 (ja) diff -c mandigo-1.29/archive.php mandigo-1.30/archive.php *** mandigo-1.29/archive.php 2007-10-25 16:57:36.000000000 -0400 --- mandigo-1.30/archive.php 2008-01-02 08:18:32.000000000 -0500 *************** *** 13,18 **** --- 13,19 ---- < class="pagetitle">> +
< class="pagetitle">> diff -c mandigo-1.29/comments.php mandigo-1.30/comments.php *** mandigo-1.29/comments.php 2007-11-03 10:54:56.000000000 -0400 --- mandigo-1.30/comments.php 2008-01-02 12:05:12.000000000 -0500 *************** *** 27,53 **** %s %s
! %s %s %s ', $oddcomment, ($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''), ! get_comment_ID(), sprintf(__('%s says:','mandigo'),get_comment_author_link()), ($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''), ! get_comment_ID(), sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()), ! ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID), apply_filters('comment_text', get_comment_text()) ); ! if (get_option('mandigo_trackbacks_after') && $comment->comment_type == 'trackback'): $trackback_list .= $comment_list_item; else: $comment_list .= $comment_list_item; endif; --- 27,64 ---- %s %s
! %s %s %s ', $oddcomment, ($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''), ! $id, sprintf(__('%s says:','mandigo'),get_comment_author_link()), ($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''), ! $id, sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()), ! function_exists('get_edit_comment_link') && current_user_can( 'edit_post', $post->ID ) ? ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID) : '', apply_filters('comment_text', get_comment_text()) ); ! /* ! if ((get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below') && $comment->comment_type == 'trackback'): $trackback_list .= $comment_list_item; + elseif (get_option('mandigo_trackbacks') == 'along' && $comment->comment_type == 'trackback'): + $comment_list .= $comment_list_item; + endif; + */ + if ($comment->comment_type == 'trackback'): + if (get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below'): + $trackback_list .= $comment_list_item; + elseif (get_option('mandigo_trackbacks') == 'along'): + $comment_list .= $comment_list_item; + endif; else: $comment_list .= $comment_list_item; endif; *************** *** 56,70 **** else $oddcomment = 'alt'; endforeach; ?>
!
    --- 67,88 ---- else $oddcomment = 'alt'; endforeach; + + if (get_option('mandigo_trackbacks') == 'above' && $trackback_list): ?> +
    +
    +
      + +
    +
    +
    !
      Binary files mandigo-1.29/de_DE.mo and mandigo-1.30/de_DE.mo differ Only in mandigo-1.30: farbtastic.css diff -c mandigo-1.29/footer.php mandigo-1.30/footer.php *** mandigo-1.29/footer.php 2007-10-25 16:57:38.000000000 -0400 --- mandigo-1.30/footer.php 2008-01-05 11:33:56.000000000 -0500 *************** *** 37,97 **** ! ! *************** *** 356,375 ****
      Background color: ! restore default
      ! ! ! ! !
      Posts background color : restore default
      Posts border color : restore default
      Sidebars background color : restore default
      Sidebars border color : restore default
      --- 390,409 ----
      ! ! ! ! !
      Posts background color : restore default
      Posts border color : restore default
      Sidebars background color : restore default
      Sidebars border color : restore default
      *************** *** 442,448 **** Highlight comments made by the author of the current post
      Number comments
      Display allowed XHTML tags above the comment field
      ! Display trackbacks after the comments


      --- 476,487 ---- Highlight comments made by the author of the current post
      Number comments
      Display allowed XHTML tags above the comment field
      ! Display trackbacks:


      *************** *** 572,577 **** --- 611,627 ----
      + Layout Fixes + You may want to experiment with these settings if you encounter problems with the columns showing up wider than they normally should:
      + Fix elements which use a "white-space: pre" style (prevents lines from being wrapped in IE)
      + Split long urls in users comments at slashes (inserts linebreaks at /\'s)
      + Replace long urls in users comments with "link"
      + Force the browser to re-render the content column
      +
      + +
      + +
      Miscellaneous Options
      diff -c mandigo-1.29/header.php mandigo-1.30/header.php *** mandigo-1.29/header.php 2007-11-04 15:10:24.000000000 -0500 --- mandigo-1.30/header.php 2008-01-05 11:17:16.000000000 -0500 *************** *** 72,77 **** --- 72,78 ---- + \n$lastminutecss\n"; *************** *** 97,103 **** < class="blogdesc" id="blogdesc">> !
      --- 98,104 ---- < class="blogdesc" id="blogdesc">> !
      Common subdirectories: mandigo-1.29/images and mandigo-1.30/images Common subdirectories: mandigo-1.29/js and mandigo-1.30/js Binary files mandigo-1.29/pl_PL.mo and mandigo-1.30/pl_PL.mo differ Only in mandigo-1.30: ro.mo Common subdirectories: mandigo-1.29/schemes and mandigo-1.30/schemes diff -c mandigo-1.29/searchform.php mandigo-1.30/searchform.php *** mandigo-1.29/searchform.php 2007-10-25 16:57:38.000000000 -0400 --- mandigo-1.30/searchform.php 2008-01-05 11:35:12.000000000 -0500 *************** *** 3,8 **** ?>
      !
      --- 3,8 ---- ?>
      !
      diff -c mandigo-1.29/style.css mandigo-1.30/style.css *** mandigo-1.29/style.css 2007-10-25 16:57:36.000000000 -0400 --- mandigo-1.30/style.css 2007-12-21 19:53:10.000000000 -0500 *************** *** 1,8 **** /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready one/two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 33 languages! ! Version: 1.29 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/wordpress/ */ --- 1,8 ---- /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready one/two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 34 languages! ! Version: 1.30 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/wordpress/ */ diff -c mandigo-1.29/style.css.php mandigo-1.30/style.css.php *** mandigo-1.29/style.css.php 2007-11-29 17:42:06.000000000 -0500 --- mandigo-1.30/style.css.php 2008-01-05 11:36:08.000000000 -0500 *************** *** 1,78 **** 99) exit; } ! $wpconfig = str_repeat('../',$d).'wp-config.php'; ! ! if (file_exists(str_repeat('../',$d).'wpmu-settings.php')) $fb++; ! else ! if (file_exists($wpconfig)) ! eval(preg_replace('/((require|include)(_once)?|define[^\n]+ABSPATH)[^\n]+|<\?php|\?>/','',file_get_contents($wpconfig))); ! ! if (defined('DB_USER')) { ! $dbh = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); ! @mysql_select_db(DB_NAME,$dbh); ! $r = @mysql_query("SELECT option_name,option_value FROM ". $table_prefix ."options WHERE option_name REGEXP '^mandigo_(1024|sidebar[12]_left|3columns|wp(_(fixed|repeat|position))?|em_italics|bgcolor|no(float|border)|headnav_left|scheme|slim_header|small_title|number_comments|(posts|sidebars)_b[dg]color|floatright|nojustify)|stylesheet|siteurl';",$dbh); ! while ($a = @mysql_fetch_row($r)) { ! if ($a[1] == 'on' ) $a[1] = 1; ! if ($a[1] == 'off') $a[1] = 0; ! $$a[0] = $a[1]; ! } ! @mysql_free_result($r); ! if (!$mandigo_scheme) $fb++; ! $stylesheet_directory = $siteurl . '/wp-content/themes/'. $stylesheet; ! } ! else $fb++; ! ! if ($fb) { ! require($wpconfig); ! $mandigo_em_italics = get_option('mandigo_em_italics'); ! $mandigo_scheme_random = get_option('mandigo_scheme_random'); ! $mandigo_3columns = get_option('mandigo_3columns'); ! $mandigo_sidebar1_left = get_option('mandigo_sidebar1_left'); ! $mandigo_sidebar2_left = get_option('mandigo_sidebar2_left'); ! $mandigo_headnav_left = get_option('mandigo_headnav_left'); ! $mandigo_wp = get_option('mandigo_wp'); ! $mandigo_1024 = get_option('mandigo_1024'); ! $mandigo_nofloat = get_option('mandigo_nofloat'); ! $mandigo_bgcolor = get_option('mandigo_bgcolor'); ! $mandigo_scheme = get_option('mandigo_scheme'); ! $mandigo_slim_header = get_option('mandigo_slim_header'); ! $mandigo_noborder = get_option('mandigo_noborder'); ! $mandigo_small_title = get_option('mandigo_small_title'); ! $mandigo_wp_fixed = get_option('mandigo_wp_fixed'); ! $mandigo_wp_repeat = get_option('mandigo_wp_repeat'); ! $mandigo_wp_position = get_option('mandigo_wp_position'); ! $mandigo_number_comments = get_option('mandigo_number_comments'); ! $mandigo_posts_bgcolor = get_option('mandigo_posts_bgcolor'); ! $mandigo_posts_bdcolor = get_option('mandigo_posts_bdcolor'); ! $mandigo_sidebars_bgcolor = get_option('mandigo_sidebars_bgcolor'); ! $mandigo_sidebars_bdcolor = get_option('mandigo_sidebars_bdcolor'); ! $mandigo_floatright = get_option('mandigo_floatright'); ! $mandigo_nojustify = get_option('mandigo_nojustify'); ! $stylesheet_directory = get_bloginfo('stylesheet_directory'); ! foreach (array('em_italics','3columns','sidebar1_left','sidebar2_left','1024','nofloat','slim_header','noborder','small_title','wp_fixed','wp_repeat','wp_position','number_comments') as $a) { ! $a = 'mandigo_'. $a; ! if ($$a == 'on') $$a = 1; ! if ($$a == 'off') $$a = 0; ! } ! status_header(200); ! } ! header('Content-type: text/css'); ! ! $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); ! $ie7 = preg_match("/MSIE 7/", $_SERVER['HTTP_USER_AGENT']); ! $safari = preg_match("/Safari/", $_SERVER['HTTP_USER_AGENT']); ! $firefox = preg_match("/Firefox/", $_SERVER['HTTP_USER_AGENT']); ?> /* Begin Typography & Colors */ body { ! font-size: 62.5%; /* Resets 1em to 10px */ ! font-family: Arial, Sans-Serif; ! color: #333; } .narrowcolumn .entry, .widecolumn .entry { line-height: 1.4em; } --- 1,90 ---- tag pair, and put them in the first textbox on ! the HTML Inserts page. ! ! Doing it this way will keep the theme easily updatable. ! ! */ ! ! error_reporting(0); ! $fb = 0; ! ! $d = 0; ! while (!file_exists(str_repeat('../',$d).'wp-config.php')) { if (++$d > 99) exit; } ! $wpconfig = str_repeat('../',$d).'wp-config.php'; ! ! if (file_exists(str_repeat('../',$d).'wpmu-settings.php')) $fb++; ! else ! if (file_exists($wpconfig)) ! eval(preg_replace('/((require|include)(_once)?|define[^\n]+ABSPATH)[^\n]+|<\?php|\?>/','',file_get_contents($wpconfig))); ! ! if (defined('DB_USER')) { ! $dbh = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); ! @mysql_select_db(DB_NAME,$dbh); ! $r = @mysql_query("SELECT option_name,option_value FROM ". $table_prefix ."options WHERE option_name REGEXP '^mandigo_(1024|sidebar[12]_left|3columns|wp(_(fixed|repeat|position))?|em_italics|bgcolor|no(float|border)|headnav_left|scheme|slim_header|small_title|number_comments|(posts|sidebars)_b[dg]color|floatright|nojustify)|stylesheet|siteurl';",$dbh); ! while ($a = @mysql_fetch_row($r)) { ! if ($a[1] == 'on' ) $a[1] = 1; ! if ($a[1] == 'off') $a[1] = 0; ! $$a[0] = $a[1]; ! } ! @mysql_free_result($r); ! if (!$mandigo_scheme) $fb++; ! $stylesheet_directory = $siteurl . '/wp-content/themes/'. $stylesheet; ! } ! else $fb++; ! ! if ($fb) { ! require($wpconfig); ! $mandigo_em_italics = get_option('mandigo_em_italics'); ! $mandigo_scheme_random = get_option('mandigo_scheme_random'); ! $mandigo_3columns = get_option('mandigo_3columns'); ! $mandigo_sidebar1_left = get_option('mandigo_sidebar1_left'); ! $mandigo_sidebar2_left = get_option('mandigo_sidebar2_left'); ! $mandigo_headnav_left = get_option('mandigo_headnav_left'); ! $mandigo_wp = get_option('mandigo_wp'); ! $mandigo_1024 = get_option('mandigo_1024'); ! $mandigo_nofloat = get_option('mandigo_nofloat'); ! $mandigo_bgcolor = get_option('mandigo_bgcolor'); ! $mandigo_scheme = get_option('mandigo_scheme'); ! $mandigo_slim_header = get_option('mandigo_slim_header'); ! $mandigo_noborder = get_option('mandigo_noborder'); ! $mandigo_small_title = get_option('mandigo_small_title'); ! $mandigo_wp_fixed = get_option('mandigo_wp_fixed'); ! $mandigo_wp_repeat = get_option('mandigo_wp_repeat'); ! $mandigo_wp_position = get_option('mandigo_wp_position'); ! $mandigo_number_comments = get_option('mandigo_number_comments'); ! $mandigo_posts_bgcolor = get_option('mandigo_posts_bgcolor'); ! $mandigo_posts_bdcolor = get_option('mandigo_posts_bdcolor'); ! $mandigo_sidebars_bgcolor = get_option('mandigo_sidebars_bgcolor'); ! $mandigo_sidebars_bdcolor = get_option('mandigo_sidebars_bdcolor'); ! $mandigo_floatright = get_option('mandigo_floatright'); ! $mandigo_nojustify = get_option('mandigo_nojustify'); ! $stylesheet_directory = get_bloginfo('stylesheet_directory'); ! foreach (array('em_italics','3columns','sidebar1_left','sidebar2_left','1024','nofloat','slim_header','noborder','small_title','wp_fixed','wp_repeat','wp_position','number_comments') as $a) { ! $a = 'mandigo_'. $a; ! if ($$a == 'on') $$a = 1; ! if ($$a == 'off') $$a = 0; ! } ! status_header(200); ! } ! header('Content-type: text/css'); ! ! $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); ! $ie7 = preg_match("/MSIE 7/", $_SERVER['HTTP_USER_AGENT']); ! $safari = preg_match("/Safari/", $_SERVER['HTTP_USER_AGENT']); ! $firefox = preg_match("/Firefox/", $_SERVER['HTTP_USER_AGENT']); ?> /* Begin Typography & Colors */ body { ! font-size: 62.5%; /* Resets 1em to 10px */ ! font-family: Arial, Sans-Serif; ! color: #333; } .narrowcolumn .entry, .widecolumn .entry { line-height: 1.4em; } *************** *** 80,131 **** .widecolumn { line-height: 1.6em; } small { ! font-family: Arial, Helvetica, Sans-Serif; ! font-size: 0.9em; ! line-height: 1.5em; } ! h1, h2, h3, .inline-widgets #wp-calendar caption, .blogname, .blogdesc { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-weight: bold; } #content { font-size: 1.2em; } .blogname { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-size: em; ! letter-spacing: -.05em; ! margin-top: px; } .blogname, .blogname a, blogname a:hover, .blogname a:visited, .blogdesc { ! text-decoration: none; ! color: white; } .blogname, .blogdesc { ! font-weight: bold; ! position: absolute; ! z-index: 100; ! margin-left: 15px; } .blogdesc { ! font-size: 1.2em; ! margin-top: 60px; } .posttitle, #comments, #respond, #trackbacks { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-weight: bold; ! font-size: 1.6em; } .posttitle, .posttitle a, .posttitle a:hover, .posttitle a:visited { ! text-align: left; ! text-decoration: none; ! color: #333; } .posttitle-archive, .posttitle-search, #comments, #respond { font-size: 1.5em; } --- 92,154 ---- .widecolumn { line-height: 1.6em; } small { ! font-family: Arial, Helvetica, Sans-Serif; ! font-size: 0.9em; ! line-height: 1.5em; ! } ! ! h1, h2, h3, h4, h5, h6 { ! font-weight: bold; } ! h1 { font-size: 1.6em; } ! h2 { font-size: 1.4em; } ! h3 { font-size: 1.2em; } ! h4 { font-size: 1.1em; } ! h5 { font-size: 1.0em; } ! h6 { font-size: 0.9em; } ! ! .inline-widgets #wp-calendar caption, .blogname, .blogdesc { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-weight: bold; } #content { font-size: 1.2em; } .blogname { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-size: em; ! letter-spacing: -.05em; ! margin-top: px; } .blogname, .blogname a, blogname a:hover, .blogname a:visited, .blogdesc { ! text-decoration: none; ! color: white; } .blogname, .blogdesc { ! font-weight: bold; ! position: absolute; ! z-index: 100; ! margin-left: 15px; } .blogdesc { ! font-size: 1.2em; ! margin-top: 60px; } .posttitle, #comments, #respond, #trackbacks { ! font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ! font-weight: bold; ! font-size: 1.6em; } .posttitle, .posttitle a, .posttitle a:hover, .posttitle a:visited { ! text-align: left; ! text-decoration: none; ! color: #333; } .posttitle-archive, .posttitle-search, #comments, #respond { font-size: 1.5em; } *************** *** 133,140 **** .pagetitle { font-size: 1.6em; } .widgettitle, .sidebars li.linkcat h2 { ! font-family: 'Lucida Grande', Verdana, Sans-Serif; ! font-size: 1.2em; } .inline-widgets .widgettitle, .inline-widgets #wp-calendar caption { font-size: 1.4em; } --- 156,164 ---- .pagetitle { font-size: 1.6em; } .widgettitle, .sidebars li.linkcat h2 { ! font-family: 'Lucida Grande', Verdana, Sans-Serif; ! font-size: 1.2em; ! font-weight: bold; } .inline-widgets .widgettitle, .inline-widgets #wp-calendar caption { font-size: 1.4em; } *************** *** 146,166 **** .widecolumn .entry p { font-size: 1.05em; } .commentlist li, #commentform input, #commentform textarea { ! font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif; } .commentlist li { font-weight: bold; } .commentlist cite, .commentlist cite a { ! font-weight: bold; ! font-style: normal; ! font-size: 1.1em; } .commentlist p { ! font-weight: normal; ! line-height: 1.5em; ! text-transform: none; } #commentform p { font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; } --- 170,190 ---- .widecolumn .entry p { font-size: 1.05em; } .commentlist li, #commentform input, #commentform textarea { ! font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif; } .commentlist li { font-weight: bold; } .commentlist cite, .commentlist cite a { ! font-weight: bold; ! font-style: normal; ! font-size: 1.1em; } .commentlist p { ! font-weight: normal; ! line-height: 1.5em; ! text-transform: none; } #commentform p { font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; } *************** *** 174,196 **** code { font: 1em 'Courier New', Courier, Fixed; } blockquote { ! color: #555; ! font-style: italic; } em { ! ! font-style: italic; ! font-weight: normal; ! ! font-style: normal; ! font-weight: bold; ! } acronym, abbr, span.caps { ! font-size: 0.9em; ! letter-spacing: .07em; } a { text-decoration: none; } --- 198,220 ---- code { font: 1em 'Courier New', Courier, Fixed; } blockquote { ! color: #555; ! font-style: italic; } em { ! ! font-style: italic; ! font-weight: normal; ! ! font-style: normal; ! font-weight: bold; ! } acronym, abbr, span.caps { ! font-size: 0.9em; ! letter-spacing: .07em; } a { text-decoration: none; } *************** *** 204,211 **** #wp-calendar caption { font: bold 1.2em 'Lucida Grande', Verdana, Arial, Sans-Serif; } #wp-calendar th { ! font-style: normal; ! text-transform: capitalize; } .text-shadow { color: #333; } --- 228,235 ---- #wp-calendar caption { font: bold 1.2em 'Lucida Grande', Verdana, Arial, Sans-Serif; } #wp-calendar th { ! font-style: normal; ! text-transform: capitalize; } .text-shadow { color: #333; } *************** *** 215,232 **** .narrowcolumn .postmetadata { text-align: left; } .four04 { ! font-weight: bold; ! font-size: 18pt; ! letter-spacing: -.1em; ! text-align: center; ! margin-top: 10px } .four04-big { ! font-size: 50pt; ! letter-spacing: -.05em; ! line-height: .6em; ! margin-top: .3em; } /* End Typography & Colors */ --- 239,256 ---- .narrowcolumn .postmetadata { text-align: left; } .four04 { ! font-weight: bold; ! font-size: 18pt; ! letter-spacing: -.1em; ! text-align: center; ! margin-top: 10px } .four04-big { ! font-size: 50pt; ! letter-spacing: -.05em; ! line-height: .6em; ! margin-top: .3em; } /* End Typography & Colors */ *************** *** 234,286 **** /* Begin Structure */ * { ! padding: 0; ! margin: 0; } p { margin: 1em 0; } body { ! background-color: ; ! ! background-image: url(/images/patterns/); ! background-attachment: ; ! background-repeat: ; ! ! background-position: ; ! ! ! text-align: center; ! margin: 0 0 20px 0; } #page { ! margin: 20px auto; ! text-align: left; ! width: px; } #header { ! background: url(images/header.png); ! height: px; ! width: px; } #headerimg { ! position: relative; ! left: 13px; ! top: 11px; ! height: px; ! width: px; ! ! background: url('schemes//images/head.jpg') bottom center no-repeat; ! } #main { ! background: url(images/bg.png); ! width: px; ! padding: 9px 15px; } #main>table { width: 100%; } --- 258,310 ---- /* Begin Structure */ * { ! padding: 0; ! margin: 0; } p { margin: 1em 0; } body { ! background-color: ; ! ! background-image: url(/images/patterns/); ! background-attachment: ; ! background-repeat: ; ! ! background-position: ; ! ! ! text-align: center; ! margin: 0 0 20px 0; } #page { ! margin: 20px auto; ! text-align: left; ! width: px; } #header { ! background: url(images/header.png); ! height: px; ! width: px; } #headerimg { ! position: relative; ! left: 13px; ! top: 11px; ! height: px; ! width: px; ! ! background: url('schemes//images/head.jpg') bottom center no-repeat; ! } #main { ! background: url(images/bg.png); ! width: px; ! padding: 9px 15px; } #main>table { width: 100%; } *************** *** 288,319 **** .narrowcolumn { width: 100%; } .narrowcolumn, .widecolumn, #sidebar1, #sidebar2 { ! vertical-align: top; ! padding: 0 3px; } .alt { ! background-color: #fafafa; ! border-top: 1px solid #eee; ! border-bottom: 1px solid #eee; } .postmetadata { background-color: #fff; } #footer { ! background: url(images/foot.png); ! border: none; } .post { ! position: relative; ! clear: both; ! text-align: ; ! padding: 5px 15px; ! margin: 0 auto 9px auto; ! background: ; ! border: 1px solid ; ! height: 1%; /* peekaboo */ } .narrowcolumn .postdata { padding-top: 5px; } --- 312,343 ---- .narrowcolumn { width: 100%; } .narrowcolumn, .widecolumn, #sidebar1, #sidebar2 { ! vertical-align: top; ! padding: 0 3px; } .alt { ! background-color: #fafafa; ! border-top: 1px solid #eee; ! border-bottom: 1px solid #eee; } .postmetadata { background-color: #fff; } #footer { ! background: url(images/foot.png); ! border: none; } .post { ! position: relative; ! clear: both; ! text-align: ; ! padding: 5px 15px; ! margin: 0 auto 9px auto; ! background: ; ! border: 1px solid ; ! height: 1%; /* peekaboo */ } .narrowcolumn .postdata { padding-top: 5px; } *************** *** 321,348 **** .widecolumn .postmetadata { margin: 30px 0; } .smallattachment { ! text-align: center; ! width: 128px; ! margin: 5px 5px 5px 0px; } .attachment { ! text-align: center; ! margin: 5px 0px; } .postmetadata, .entry, .inline-widgets, .clear { clear: both; } #footer { ! margin: 0 auto; ! width: px; ! height: 68px; } #footer p { ! margin: 0; ! padding: 10px 0 0 0; ! text-align: center; } --- 345,372 ---- .widecolumn .postmetadata { margin: 30px 0; } .smallattachment { ! text-align: center; ! width: 128px; ! margin: 5px 5px 5px 0px; } .attachment { ! text-align: center; ! margin: 5px 0px; } .postmetadata, .entry, .inline-widgets, .clear { clear: both; } #footer { ! margin: 0 auto; ! width: px; ! height: 68px; } #footer p { ! margin: 0; ! padding: 10px 0 0 0; ! text-align: center; } *************** *** 350,371 **** .sidebars { ! width: 210px; ! background: ; ! border: 1px solid ; ! padding: 5px; ! overflow: hidden; } ! .pagetitle { ! margin-top: 30px; ! text-align: center; ! } .post .pagetitle { ! margin-top: inherit; ! text-align: left; ! font-size: 1.5em; } .sidebars .widgettitle { margin: 5px 0 0 0; } --- 374,392 ---- .sidebars { ! width: 210px; ! background: ; ! border: 1px solid ; ! padding: 5px; ! overflow: hidden; } ! .pagetitle { text-align: center; } .post .pagetitle { ! margin-top: inherit; ! text-align: left; ! font-size: 1.5em; } .sidebars .widgettitle { margin: 5px 0 0 0; } *************** *** 380,432 **** .text-stroke-tl, .text-stroke-tr, .text-stroke-bl, .text-stroke-br { z-index: 99; } .switch-post { ! float: right; ! position: relative; ! right: -10px; } /* End Structure */ /* Begin Images */ - .png { behavior: url(/js/iepngfix.htc.php?blank=/images/1x1.gif); } - p img { max-width: 95%; } .entry img { ! float: ; ! margin: 3px px 3px px; ! ! background: #fff; ! border: 1px solid #333; ! padding: 3px; ! } img.nofloat, img.nowrap, .nofloat img, .nowrap img, .smallattachment img, .attachment img, .entry img.wp-smiley { float: none; } .entry img.wp-smiley { ! border: 0; ! padding: 0; ! margin: 0; ! background: transparent; } ! img.noborder { ! background: inherit; ! border: 0; ! padding: inherit; } img.centered { ! display: block; ! margin-left: auto; ! margin-right: auto; ! float: none; } img.alignright, img.alignleft { ! display: inline; } .alignright { float: right !important; } --- 401,457 ---- .text-stroke-tl, .text-stroke-tr, .text-stroke-bl, .text-stroke-br { z-index: 99; } .switch-post { ! float: right; ! position: relative; ! right: -10px; ! } ! ! .catdesc { ! padding: 0 5px; ! text-align: justify; ! font-style: italic; } /* End Structure */ /* Begin Images */ p img { max-width: 95%; } .entry img { ! float: ; ! margin: 3px px 3px px; ! ! background: #fff; ! border: 1px solid #333; ! padding: 3px; ! } img.nofloat, img.nowrap, .nofloat img, .nowrap img, .smallattachment img, .attachment img, .entry img.wp-smiley { float: none; } .entry img.wp-smiley { ! border: 0; ! padding: 0; ! margin: 0; ! background: transparent; } ! img.noborder, .noborder img { ! background: inherit; ! border: 0; ! padding: inherit; } img.centered { ! display: block; ! margin-left: auto; ! margin-right: auto; ! float: none; } img.alignright, img.alignleft { ! display: inline; } .alignright { float: right !important; } *************** *** 442,479 **** ol ol, ol ul, ul ul, ul ol { padding: 0 0 0 10px; } ul { ! margin-left: 0; ! list-style: none; ! list-style-type: circle; } li { margin: 3px 0 4px 5px; } .postdata ul, .postmetadata li { ! display: inline; ! list-style-type: none; ! list-style-image: none; } .sidebars li { ! list-style-image: url(schemes//images/star.gif); ! margin: 0 0 15px 25px; ! ! margin: 10px 0 15px 20px; ! } .sidebars ul, .sidebars ol { padding: 0; } .sidebars ul li { ! list-style-type: circle; ! list-style-image: none; ! margin: 0; } ol li, .sidebars ol li { ! list-style: decimal outside; ! list-style-image: none; } .sidebars p, .sidebars select { margin: 5px 0 8px 0; } --- 467,504 ---- ol ol, ol ul, ul ul, ul ol { padding: 0 0 0 10px; } ul { ! margin-left: 0; ! list-style: none; ! list-style-type: circle; } li { margin: 3px 0 4px 5px; } .postdata ul, .postmetadata li { ! display: inline; ! list-style-type: none; ! list-style-image: none; } .sidebars li { ! list-style-image: url(schemes//images/star.gif); ! margin: 0 0 15px 25px; ! ! margin: 10px 0 15px 20px; ! } .sidebars ul, .sidebars ol { padding: 0; } .sidebars ul li { ! list-style-type: circle; ! list-style-image: none; ! margin: 0; } ol li, .sidebars ol li { ! list-style: decimal outside; ! list-style-image: none; } .sidebars p, .sidebars select { margin: 5px 0 8px 0; } *************** *** 489,519 **** /* Begin Form Elements */ #searchform { ! margin: 0 auto; ! padding: 0 3px; ! text-align: center; } #content #searchform { ! margin-bottom: 10px; ! text-align: left; } .sidebars #searchform #s { ! border: 1px dashed #ddd; ! width: 140px; ! padding: 2px; } #content #searchform #s { ! border: 1px dashed #bbb; ! width: 200px; ! padding: 2px; } .sidebars #searchsubmit, #content #searchsubmit { ! position: relative; ! top: 6px; } .entry form { text-align: center; } --- 514,544 ---- /* Begin Form Elements */ #searchform { ! margin: 0 auto; ! padding: 0 3px; ! text-align: center; } #content #searchform { ! margin-bottom: 10px; ! text-align: left; } .sidebars #searchform #s { ! border: 1px dashed #ddd; ! width: 140px; ! padding: 2px; } #content #searchform #s { ! border: 1px dashed #bbb; ! width: 200px; ! padding: 2px; } .sidebars #searchsubmit, #content #searchsubmit { ! position: relative; ! top: 6px; } .entry form { text-align: center; } *************** *** 521,544 **** select { width: 130px; } #commentform { ! margin-bottom: 1em; ! width: 99%; } #commentform input { ! width: 170px; ! padding: 2px; ! margin: 5px 5px 1px 0; } #commentform textarea { ! width: 99%; ! padding: 2px; } #commentform #submit { ! margin: 0 1em 0 0; ! float: right; } /* End Form Elements */ --- 546,569 ---- select { width: 130px; } #commentform { ! margin-bottom: 1em; ! width: 99%; } #commentform input { ! width: 170px; ! padding: 2px; ! margin: 5px 5px 1px 0; } #commentform textarea { ! width: 99%; ! padding: 2px; } #commentform #submit { ! margin: 0 1em 0 0; ! float: right; } /* End Form Elements */ *************** *** 546,567 **** /* Begin Comments*/ .alt { ! margin: 0; ! padding: 10px; } .commentlist { ! text-align: justify; ! ! margin-left: 3em; ! ! margin-bottom: 15px; } .commentlist li { ! margin: 15px 0 3px 0; ! padding: 5px 10px 3px 10px; ! list-style: ; } .commentlist p { margin: 10px 5px 10px 0; } --- 571,592 ---- /* Begin Comments*/ .alt { ! margin: 0; ! padding: 10px; } .commentlist { ! text-align: justify; ! ! margin-left: 3em; ! ! margin-bottom: 15px; } .commentlist li { ! margin: 15px 0 3px 0; ! padding: 5px 10px 3px 10px; ! list-style: ; } .commentlist p { margin: 10px 5px 10px 0; } *************** *** 573,586 **** .commentmetadata { display: block; } .authorcomment { ! background: #EEE; ! color: #000; ! border-top: 1px solid #CCC; ! border-bottom: 1px solid #CCC; ! ! background: #666; ! color: #FFF; ! } /* End Comments */ --- 598,611 ---- .commentmetadata { display: block; } .authorcomment { ! background: #EEE; ! color: #000; ! border-top: 1px solid #CCC; ! border-bottom: 1px solid #CCC; ! ! background: #666; ! color: #FFF; ! } /* End Comments */ *************** *** 588,619 **** /* Begin Calendar */ #wp-calendar { ! empty-cells: show; ! margin: 0 !important; margin-top: -1.5em; ! width: 155px; } #wp-calendar caption { ! margin-top: -1.2em; ! } /* dirty fix for the event calendar plugin */ div#wp-calendar caption { padding-top: 1.5em; } div#wp-calendar .nav { ! margin: ; ! position: relative; } /* end dirty fix */ #wp-calendar #next a { ! padding-right: 10px; ! text-align: right; } #wp-calendar #prev a { ! padding-left: 10px; ! text-align: left; } #wp-calendar a { display: block; } --- 613,644 ---- /* Begin Calendar */ #wp-calendar { ! empty-cells: show; ! margin: 0 !important; margin-top: -1.5em; ! width: 155px; } #wp-calendar caption { ! margin-top: -1.2em; ! } /* dirty fix for the event calendar plugin */ div#wp-calendar caption { padding-top: 1.5em; } div#wp-calendar .nav { ! margin: ; ! position: relative; } /* end dirty fix */ #wp-calendar #next a { ! padding-right: 10px; ! text-align: right; } #wp-calendar #prev a { ! padding-left: 10px; ! text-align: left; } #wp-calendar a { display: block; } *************** *** 621,637 **** #wp-calendar #today { background: #fff; } #wp-calendar caption { ! text-align: left; ! width: 100%; } #wp-calendar th { ! padding: 3px 0; ! text-align: center; } #wp-calendar td { ! padding: 3px 0; ! text-align: center; } /* End Calendar */ --- 646,662 ---- #wp-calendar #today { background: #fff; } #wp-calendar caption { ! text-align: left; ! width: 100%; } #wp-calendar th { ! padding: 3px 0; ! text-align: center; } #wp-calendar td { ! padding: 3px 0; ! text-align: center; } /* End Calendar */ *************** *** 643,732 **** acronym, abbr { border-bottom: 1px dashed #999; } blockquote { ! margin: 15px 10px 0 10px; ! padding: 0 20px 0 20px; ! border: 1px dashed #ddd; ! border-left: 0; ! border-right: 0; ! background: #fff; } .center { text-align: center; } a img { border: none; } ! .navigation .alignleft { ! padding: 20px 0; ! width: 50%; ! text-align: left; } .navigation .alignright { ! padding: 20px 0; ! width: 50%; ! text-align: right; } .cal { ! color: #fff; ! text-align: center; ! line-height: 1.4em; ! font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Sans-Serif; ! padding: 1px; ! width: 2.9em; } .calborder { ! display: inline; ! padding: 1px; ! float: left; ! margin-right: 1em; } .cal span { display: block; } .cald { ! font-size: 1.5em; ! letter-spacing: .2em; ! padding-left: .2em } .cald2 { ! letter-spacing: 0em; ! padding-left: 0em } .calm { ! font-weight: bold; ! font-size: 2em; ! line-height: .7em; } .caly { ! font-size: .8em; ! line-height: 1em; } .pages { ! display: inline; ! position: absolute; ! left: 0; ! bottom: 0; ! text-align: ; ! padding: .6em 0; ! width: 100%; } .pages li { ! list-style-type: none; ! display: inline; ! margin: 0 1em; } .pages a, .pages a:hover { ! font-size: 1.5em; ! font-weight: bold; ! color: #FFF; ! letter-spacing: -.08em !important; letter-spacing: -.1em; } .postinfo { padding-bottom: 1em; } --- 668,757 ---- acronym, abbr { border-bottom: 1px dashed #999; } blockquote { ! margin: 15px 10px 0 10px; ! padding: 0 20px 0 20px; ! border: 1px dashed #ddd; ! border-left: 0; ! border-right: 0; ! background: #fff; } .center { text-align: center; } a img { border: none; } ! .navigation .alignleft { ! padding: 20px 0; ! width: 50%; ! text-align: left; } .navigation .alignright { ! padding: 20px 0; ! width: 50%; ! text-align: right; } .cal { ! color: #fff; ! text-align: center; ! line-height: 1.4em; ! font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Sans-Serif; ! padding: 1px; ! width: 2.9em; } .calborder { ! display: inline; ! padding: 1px; ! float: left; ! margin-right: 1em; } .cal span { display: block; } .cald { ! font-size: 1.5em; ! letter-spacing: .2em; ! padding-left: .2em } .cald2 { ! letter-spacing: 0em; ! padding-left: 0em } .calm { ! font-weight: bold; ! font-size: 2em; ! line-height: .7em; } .caly { ! font-size: .8em; ! line-height: 1em; } .pages { ! display: inline; ! position: absolute; ! left: 0; ! bottom: 0; ! text-align: ; ! padding: .6em 0; ! width: 100%; } .pages li { ! list-style-type: none; ! display: inline; ! margin: 0 1em; } .pages a, .pages a:hover { ! font-size: 1.5em; ! font-weight: bold; ! color: #FFF; ! letter-spacing: -.08em !important; letter-spacing: -.1em; } .postinfo { padding-bottom: 1em; } *************** *** 734,748 **** .postinfo .posttitle { line-height: .9em; } .head_overlay { ! background: url(images/); ! ! filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/head_overlay.png', sizingMethod='scale'); ! } #rss { ! float: right; ! padding-right: 4px; } .inline-widgets { padding-left: 0; } --- 759,770 ---- .postinfo .posttitle { line-height: .9em; } .head_overlay { ! background: url(images/head_overlay.png); } #rss { ! float: right; ! padding-right: 4px; } .inline-widgets { padding-left: 0; } *************** *** 761,791 **** /* RTL scripts support */ .pages, #content, .sidebars, #footer { direction: rtl; } .blogname, .blogdesc { ! width: px; ! text-align: right; ! padding-left: 0; ! margin-left: 0; ! margin-right: 15px; } .calborder { ! float: right; ! margin-right: 0; ! margin-left: 1em; } .narrowcolumn .postmetadata, #content #searchform, #respond, #commentform p, .sidebars, #wp-calendar caption, .posttitle { text-align: right; } .entry img { ! float: ; ! margin: 3px px 3px px; } #commentform input { margin: 5px 0 1px 5px; } --- 783,813 ---- /* RTL scripts support */ .pages, #content, .sidebars, #footer { direction: rtl; } .blogname, .blogdesc { ! width: px; ! text-align: right; ! padding-left: 0; ! margin-left: 0; ! margin-right: 15px; } .calborder { ! float: right; ! margin-right: 0; ! margin-left: 1em; } .narrowcolumn .postmetadata, #content #searchform, #respond, #commentform p, .sidebars, #wp-calendar caption, .posttitle { text-align: right; } .entry img { ! float: ; ! margin: 3px px 3px px; } #commentform input { margin: 5px 0 1px 5px; } *************** *** 803,831 **** li { margin: 3px 5px 4px 0; } .sidebars li { ! margin: 0 25px 15px 0; ! ! margin: 10px 20px 15px 0; ! } .pages li { ! display: table-cell; ! padding: 0 1em; } .sidebars>li { ! list-style-image: none; ! list-style-type: none; } .sidebars>li .widgettitle { ! background-image: url(schemes//images/star.gif); ! background-repeat: no-repeat; ! background-position: top right; ! margin-right: -20px; ! padding-right: 20px; } --- 825,853 ---- li { margin: 3px 5px 4px 0; } .sidebars li { ! margin: 0 25px 15px 0; ! ! margin: 10px 20px 15px 0; ! } .pages li { ! display: table-cell; ! padding: 0 1em; } .sidebars>li { ! list-style-image: none; ! list-style-type: none; } .sidebars>li .widgettitle { ! background-image: url(schemes//images/star.gif); ! background-repeat: no-repeat; ! background-position: top right; ! margin-right: -20px; ! padding-right: 20px; } *************** *** 836,844 **** .sidebars ul ul, .sidebars ol { margin: 0 10px 0 0; } .switch-post { ! float: left; } --- 858,866 ---- .sidebars ul ul, .sidebars ol { margin: 0 10px 0 0; } .switch-post { ! float: left; }