diff -c mandigo-1.7.1/README.txt mandigo-1.8/README.txt *** mandigo-1.7.1/README.txt 2007-01-22 10:04:42.000000000 -0500 --- mandigo-1.8/README.txt 2007-02-02 13:09:12.000000000 -0500 *************** *** 46,55 **** The theme is available in seven different color schemes, which you can select from the Presentation, Theme Options subpanel in the Administration interface. ! If none of the headers satisfy your needs, I have included a blank one in the extras/ ! subfolder which you can modify. Replace the red area with your own image and save your ! new header as 'head.jpg' in the images/ subfolder that corresponds to your current color ! scheme, i.e. the one you have set on the Theme Options page. Images classes: - Images in posts are surrounded by a border by default. To override this behaviour, --- 46,55 ---- The theme is available in seven different color schemes, which you can select from the Presentation, Theme Options subpanel in the Administration interface. ! If none of the headers satisfy your needs, replace the contents of head.jpg in the ! images/ subfolder that corresponds to your current color scheme (i.e. the one you have ! set on the Theme Options page) with your own image. For best results, the image should ! be 737 pixels wide and 226 pixels high. Images classes: - Images in posts are surrounded by a border by default. To override this behaviour, *************** *** 80,85 **** --- 80,95 ---- === CHANGELOG ========================================================================== + 1.8 + + added an option to change the body background color + * reworked the pages navigation + - dropped the option to make the black stripe span multiple lines, now done with css + * the theme now uses png files for the main aera decorations + - deleted the extras/ subfolder + * fixed the calendar caption issue + * pages are now sorted according to menu_order rather than alphabeticaly + * fixed some CSS warnings + 1.7.1 * changed the color of links in the green and teal schemes * removed some duplicate files Only in mandigo-1.7.1: black.css diff -c mandigo-1.7.1/blue.css mandigo-1.8/blue.css *** mandigo-1.7.1/blue.css 2006-12-05 23:22:03.000000000 -0500 --- mandigo-1.8/blue.css 2007-02-02 11:07:45.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/blue/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #2E8FC6; } a:hover { color: #0F3461; } #sidebar li { list-style-image: url(images/blue/star.gif); } --- 1,4 ---- ! #headerimg { background: url('images/blue/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #2E8FC6; } a:hover { color: #0F3461; } #sidebar li { list-style-image: url(images/blue/star.gif); } Only in mandigo-1.7.1: extras diff -c mandigo-1.7.1/footer.php mandigo-1.8/footer.php *** mandigo-1.7.1/footer.php 2007-01-10 21:33:41.000000000 -0500 --- mandigo-1.8/footer.php 2007-02-02 12:38:33.000000000 -0500 *************** *** 13,20 ****

Powered by WordPress, Mandigo theme by tom. !
Entries (RSS) ! and Comments (RSS).

--- 13,20 ----

Powered by WordPress, Mandigo theme by tom. !
Entries (RSS) ! and Comments (RSS).

diff -c mandigo-1.7.1/functions.php mandigo-1.8/functions.php *** mandigo-1.7.1/functions.php 2007-01-21 13:09:10.000000000 -0500 --- mandigo-1.8/functions.php 2007-02-02 12:55:45.000000000 -0500 *************** *** 12,17 **** --- 12,20 ---- if (get_option('mandigo_dates')) { $dates = get_option('mandigo_dates'); } else { $dates = 0; update_option('mandigo_dates', $dates); } + if (get_option('mandigo_bgcolor')) { $bgcolor = get_option('mandigo_bgcolor'); } + else { $bgcolor = '#44484F'; update_option('mandigo_bgcolor', $bgcolor); } + add_action('wp_head', 'mandigo_head'); function mandigo_head() { $current = get_option('mandigo_scheme'); *************** *** 37,43 **** // CALENDAR WIDGET function widget_mandigo_calendar() { ?> !
  • !
  •  

  • $value ) { if ( preg_match("/exclude_(\d+)/",$field,$id) ) { $exclude[] = $id[1]; } } mandigo_set_exclude_pages(implode(",",$exclude)); mandigo_set_bold_links($_POST['boldlinks']); } ! $current = get_option('mandigo_scheme'); ! $headoverlay = get_option('mandigo_headoverlay'); ! $dates = get_option('mandigo_dates'); ! $headoverlay_oversize = get_option('mandigo_headoverlay_oversize'); ! $exclude = split(",",get_option('mandigo_exclude_pages')); ! $boldlinks = get_option('mandigo_bold_links'); $pages = & get_pages('sort_column=menu_order'); foreach ( $pages as $page ) { --- 96,115 ---- mandigo_set_scheme($_POST['scheme']); mandigo_set_overlay($_POST['headoverlay']); mandigo_set_dates($_POST['dates']); $exclude[] = ''; foreach ( $_POST as $field => $value ) { if ( preg_match("/exclude_(\d+)/",$field,$id) ) { $exclude[] = $id[1]; } } mandigo_set_exclude_pages(implode(",",$exclude)); mandigo_set_bold_links($_POST['boldlinks']); + mandigo_set_bgcolor($_POST['bgcolor']); } ! $current = get_option('mandigo_scheme'); ! $headoverlay = get_option('mandigo_headoverlay'); ! $dates = get_option('mandigo_dates'); ! $exclude = split(",",get_option('mandigo_exclude_pages')); ! $boldlinks = get_option('mandigo_bold_links'); ! $bgcolor = get_option('mandigo_bgcolor'); $pages = & get_pages('sort_column=menu_order'); foreach ( $pages as $page ) { *************** *** 126,132 **** purple   orange   teal

    ! If you prefer to use your own header image with one of the color schemes, there is a blank header file named head.png in the mandigo/extras/ subfolder. Consult the README page for more information.
    --- 133,141 ---- purple   orange   teal

    ! If you prefer to use your own header image with one of the color schemes, please consult the README page.

    !
    !

    *************** *** 134,146 ****
    When enabled, this options overlays a translucent black stripe on the header for better readability.

    off   ! on   ! ! Make the stripe span:


    '. $pages_select .'
    --- 143,149 ----
    When enabled, this options overlays a translucent black stripe on the header for better readability.

    off   ! on


    '. $pages_select .'
    diff -c mandigo-1.7.1/green.css mandigo-1.8/green.css *** mandigo-1.7.1/green.css 2007-01-22 09:46:04.000000000 -0500 --- mandigo-1.8/green.css 2007-02-02 11:08:08.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/green/head.jpg') bottom center no-repeat; } a, a:hover, .entry p a:visited { color: #206E01; } h2 a:hover, h3 a:hover { color: #3DB306; } .entry p a { border-bottom: 1px dotted #206E01; } --- 1,4 ---- ! #headerimg { background: url('images/green/head.jpg') bottom center no-repeat; } a, a:hover, .entry p a:visited { color: #206E01; } h2 a:hover, h3 a:hover { color: #3DB306; } .entry p a { border-bottom: 1px dotted #206E01; } diff -c mandigo-1.7.1/header.php mandigo-1.8/header.php *** mandigo-1.7.1/header.php 2007-01-21 13:04:22.000000000 -0500 --- mandigo-1.8/header.php 2007-02-02 12:56:35.000000000 -0500 *************** *** 12,29 **** ! \n$lastminutecss\n"; } ?>
    --- 12,38 ---- ! +
    *************** *** 33,44 ****

    ! !
    );"> 
    ! !
    --- 42,50 ----

    !
    Common subdirectories: mandigo-1.7.1/images and mandigo-1.8/images diff -c mandigo-1.7.1/index.php mandigo-1.8/index.php *** mandigo-1.7.1/index.php 2007-01-10 21:22:49.000000000 -0500 --- mandigo-1.8/index.php 2007-02-02 12:39:04.000000000 -0500 *************** *** 22,28 **** !

    Comments

    --- 22,28 ---- !

    Comments

    diff -c mandigo-1.7.1/orange.css mandigo-1.8/orange.css *** mandigo-1.7.1/orange.css 2007-01-15 23:17:59.000000000 -0500 --- mandigo-1.8/orange.css 2007-02-02 11:08:17.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/orange/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #FF9B2A; } #sidebar li { list-style-image: url(images/orange/star.gif); } #wp-calendar a:hover { --- 1,4 ---- ! #headerimg { background: #44484F url('images/orange/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #FF9B2A; } #sidebar li { list-style-image: url(images/orange/star.gif); } #wp-calendar a:hover { diff -c mandigo-1.7.1/pink.css mandigo-1.8/pink.css *** mandigo-1.7.1/pink.css 2007-01-08 14:35:33.000000000 -0500 --- mandigo-1.8/pink.css 2007-02-02 11:08:25.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/pink/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #F02B88; } a:hover { color: #8B203D; } #sidebar li { list-style-image: url(images/pink/star.gif); } --- 1,4 ---- ! #headerimg { background: url('images/pink/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #F02B88; } a:hover { color: #8B203D; } #sidebar li { list-style-image: url(images/pink/star.gif); } diff -c mandigo-1.7.1/purple.css mandigo-1.8/purple.css *** mandigo-1.7.1/purple.css 2007-01-11 12:15:09.000000000 -0500 --- mandigo-1.8/purple.css 2007-02-02 11:08:32.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/purple/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #B53492; } a:hover { color: #7F2D66; } #sidebar li { list-style-image: url(images/purple/star.gif); } --- 1,4 ---- ! #headerimg { background: url('images/purple/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #B53492; } a:hover { color: #7F2D66; } #sidebar li { list-style-image: url(images/purple/star.gif); } diff -c mandigo-1.7.1/red.css mandigo-1.8/red.css *** mandigo-1.7.1/red.css 2006-12-11 14:11:52.000000000 -0500 --- mandigo-1.8/red.css 2007-02-02 11:08:40.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/red/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #CC1F27; } a:hover { color: #6E0F01; } #sidebar li { list-style-image: url(images/red/star.gif); } --- 1,4 ---- ! #headerimg { background: url('images/red/head.jpg') bottom center no-repeat; } a, h2 a:hover, h3 a:hover, .entry p a:visited { color: #CC1F27; } a:hover { color: #6E0F01; } #sidebar li { list-style-image: url(images/red/star.gif); } diff -c mandigo-1.7.1/style.css mandigo-1.8/style.css *** mandigo-1.7.1/style.css 2007-01-22 09:49:31.000000000 -0500 --- mandigo-1.8/style.css 2007-02-02 12:57:58.000000000 -0500 *************** *** 2,8 **** Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ Description: Mandigo is an elegant widget-ready two-column Wordpress theme, available in SEVEN color schemes! ! Version: 1.7.1 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */ --- 2,8 ---- Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ Description: Mandigo is an elegant widget-ready two-column Wordpress theme, available in SEVEN color schemes! ! Version: 1.8 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */ *************** *** 12,18 **** body { font-size: 62.5%; /* Resets 1em to 10px */ font-family: Arial, Sans-Serif; - background: #44484F; color: #333; text-align: center; } --- 12,17 ---- *************** *** 21,32 **** text-align: left; } - #headerimg { - margin: 0; - height: 243px; - width: 763px; - } - #content { font-size: 1.2em; } --- 20,25 ---- *************** *** 54,60 **** } #footer { - background: #44484F url('images/foot.jpg') no-repeat center top; border: none; } --- 47,52 ---- *************** *** 178,186 **** } #wp-calendar caption { ! font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif; ! text-align: center; ! display: none; } #wp-calendar th { --- 170,176 ---- } #wp-calendar caption { ! font: bold 1.2em 'Lucida Grande', Verdana, Arial, Sans-Serif; } #wp-calendar th { *************** *** 198,211 **** } #page { - background: #44484F url(images/bg.jpg) repeat-y center top; margin: 20px auto; padding: 0; width: 763px; } #header { - background-color: #44484F; margin: 0; padding: 0; height: 243px; --- 188,199 ---- *************** *** 215,225 **** #headerimg { margin: 0; position: relative; ! left: 0; ! top: 0; ! } #headerimg h1, #headerimg .description { ! padding-left: 30px; } .narrowcolumn { --- 203,216 ---- #headerimg { margin: 0; position: relative; ! left: 13px; ! top: 11px; ! height: 226px; ! width: 737px; ! } ! #headerimg h1, #headerimg .description { ! padding-left: 15px; } .narrowcolumn { *************** *** 267,273 **** padding: 0; margin: 0 auto; width: 763px; ! height: 55px; clear: both; } --- 258,264 ---- padding: 0; margin: 0 auto; width: 763px; ! height: 68px; clear: both; } *************** *** 281,287 **** /* Begin Headers */ h1 { ! padding-top: 30px; margin: 0; } --- 272,278 ---- /* Begin Headers */ h1 { ! padding-top: 15px; margin: 0; } *************** *** 360,366 **** /* Begin Lists */ html>body .entry ul { ! margin-left: 0px; padding: 0 0 0 20px; list-style: none; list-style-type: circle; --- 351,357 ---- /* Begin Lists */ html>body .entry ul { ! margin-left: 0; padding: 0 0 0 20px; list-style: none; list-style-type: circle; *************** *** 521,530 **** /* Begin Calendar */ #wp-calendar { empty-cells: show; ! margin: 0; width: 155px; } #wp-calendar #next a { padding-right: 10px; text-align: right; --- 512,524 ---- /* Begin Calendar */ #wp-calendar { empty-cells: show; ! margin: 0 !important; margin-top: -1.5em; width: 155px; } + #wp-calendar caption { + margin-top: -1.2em; + } #wp-calendar #next a { padding-right: 10px; text-align: right; *************** *** 544,550 **** } #wp-calendar caption { ! text-align: center; width: 100%; } --- 538,544 ---- } #wp-calendar caption { ! text-align: left; width: 100%; } *************** *** 635,648 **** .pages { display: inline; position: absolute; ! right: 24px; ! bottom: 0 !important; bottom: 10px; text-align: right; ! padding: 0; } ! .pages_ie7 { ! bottom: 10px !important; } .pages ul { display: none; --- 629,648 ---- .pages { display: inline; position: absolute; ! left: 0; ! bottom: 10px; ! bottom: 0; text-align: right; ! padding: .6em 0; ! width: 100%; } ! ul.pages { ! margin: 0; ! } ! ! .pages_ie { ! margin-bottom: -1em; } .pages ul { display: none; *************** *** 664,676 **** .postinfo { padding-bottom: 1em; } .postinfo h2, .postinfo h3 { line-height: .9em; } ! ! #head_overlay { ! position: absolute; ! right: 13px !important; right: 12px; ! bottom: 5px; ! width: 737px; ! height: 30px; } #rss { --- 664,671 ---- .postinfo { padding-bottom: 1em; } .postinfo h2, .postinfo h3 { line-height: .9em; } ! .head_overlay { ! background: url(images/head_overlay.png); } #rss { diff -c mandigo-1.7.1/teal.css mandigo-1.8/teal.css *** mandigo-1.7.1/teal.css 2007-01-22 09:19:58.000000000 -0500 --- mandigo-1.8/teal.css 2007-02-02 11:12:15.000000000 -0500 *************** *** 1,4 **** ! #header { background: #44484F url('images/teal/head.jpg') bottom center no-repeat; } a, a:hover, .entry p a:visited { color: #007062; } h2 a:hover, h3 a:hover { color: #00BA9D; } .entry p a { border-bottom: 1px dotted #206E01; } --- 1,4 ---- ! #headerimg { background: url('images/teal/head.jpg') bottom center no-repeat; } a, a:hover, .entry p a:visited { color: #007062; } h2 a:hover, h3 a:hover { color: #00BA9D; } .entry p a { border-bottom: 1px dotted #206E01; }