diff -c mandigo-1.8/README.txt mandigo-1.9/README.txt
*** mandigo-1.8/README.txt 2007-02-02 13:09:12.000000000 -0500
--- mandigo-1.9/README.txt 2007-02-14 16:36:12.000000000 -0500
***************
*** 49,55 ****
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,
--- 49,55 ----
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 (961 for the wide version) and 226 pixels high.
Images classes:
- Images in posts are surrounded by a border by default. To override this behaviour,
***************
*** 80,85 ****
--- 80,91 ----
=== CHANGELOG ==========================================================================
+ 1.9
+ + by popular request, the theme is now available in two widths: 800px (default) and
+ 1024px, hooray!
+ + added an option to change schemes randomly
+ * fixed non-clickable footer links issue in IE6
+
1.8
+ added an option to change the body background color
* reworked the pages navigation
diff -c mandigo-1.8/blue.css mandigo-1.9/blue.css
*** mandigo-1.8/blue.css 2007-02-02 11:07:45.000000000 -0500
--- mandigo-1.9/blue.css 2007-02-14 16:29:09.000000000 -0500
***************
*** 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); }
--- 1,3 ----
diff -c mandigo-1.8/functions.php mandigo-1.9/functions.php
*** mandigo-1.8/functions.php 2007-02-02 12:55:45.000000000 -0500
--- mandigo-1.9/functions.php 2007-02-14 16:33:15.000000000 -0500
***************
*** 1,7 ****
- ';
- }
-
-
// SEARCH WIDGET
function widget_mandigo_search() {
--- 14,19 ----
***************
*** 78,87 ****
--- 69,80 ----
function add_mandigo_options_page() { add_theme_page('Theme Options', 'Theme Options', 'edit_themes', basename(__FILE__), 'mandigo_options_page'); }
function add_mandigo_readme_page() { add_theme_page('README', 'README', 'switch_themes', '', 'mandigo_readme_page'); }
function mandigo_set_scheme($var) { update_option('mandigo_scheme', $var); }
+ function mandigo_set_scheme_random($var) { update_option('mandigo_scheme_random', $var); }
function mandigo_set_overlay($var) { update_option('mandigo_headoverlay', $var); }
function mandigo_set_dates($var) { update_option('mandigo_dates', $var); }
function mandigo_set_exclude_pages($var) { update_option('mandigo_exclude_pages', $var); }
function mandigo_set_bold_links($var) { update_option('mandigo_bold_links', $var); }
+ function mandigo_set_1024($var) { update_option('mandigo_1024', $var); }
function mandigo_set_bgcolor($var) {
if (!preg_match("/^#?[0-9A-F]{6}$/i",$var)) { $var = '#44484F'; }
if (!preg_match("/^#/",$var)) { $var = '#'. $var; }
***************
*** 94,99 ****
--- 87,93 ----
if (isset($_POST['changedscheme'])) {
mandigo_set_scheme($_POST['scheme']);
+ mandigo_set_scheme_random($_POST['random']);
mandigo_set_overlay($_POST['headoverlay']);
mandigo_set_dates($_POST['dates']);
$exclude[] = '';
***************
*** 103,108 ****
--- 97,103 ----
mandigo_set_exclude_pages(implode(",",$exclude));
mandigo_set_bold_links($_POST['boldlinks']);
mandigo_set_bgcolor($_POST['bgcolor']);
+ mandigo_set_1024($_POST['wide']);
}
$current = get_option('mandigo_scheme');
$headoverlay = get_option('mandigo_headoverlay');
***************
*** 110,115 ****
--- 105,111 ----
$exclude = split(",",get_option('mandigo_exclude_pages'));
$boldlinks = get_option('mandigo_bold_links');
$bgcolor = get_option('mandigo_bgcolor');
+ $wide = get_option('mandigo_1024');
$pages = & get_pages('sort_column=menu_order');
foreach ( $pages as $page ) {
***************
*** 133,144 ****
--- 129,144 ----
+ I like them all, change schemes randomly!
If you prefer to use your own header image with one of the color schemes, please consult the README page.
Background Color
+ Theme Width
+ Use the 1024px theme look instead of the default 800px one
+
Miscellaneous Options
Page Navigation Overlay
When enabled, this options overlays a translucent black stripe on the header for better readability.
diff -c mandigo-1.8/green.css mandigo-1.9/green.css
*** mandigo-1.8/green.css 2007-02-02 11:08:08.000000000 -0500
--- mandigo-1.9/green.css 2007-02-14 16:32:03.000000000 -0500
***************
*** 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; }
--- 1,3 ----
diff -c mandigo-1.8/header.php mandigo-1.9/header.php
*** mandigo-1.8/header.php 2007-02-02 12:56:35.000000000 -0500
--- mandigo-1.9/header.php 2007-02-14 16:34:15.000000000 -0500
***************
*** 8,14 ****
!
--- 8,21 ----
!
!
!
***************
*** 17,36 ****
--- 24,36 ----
Common subdirectories: mandigo-1.8/images and mandigo-1.9/images
diff -c mandigo-1.8/orange.css mandigo-1.9/orange.css
*** mandigo-1.8/orange.css 2007-02-02 11:08:17.000000000 -0500
--- mandigo-1.9/orange.css 2007-02-14 16:32:08.000000000 -0500
***************
*** 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 {
--- 1,3 ----
diff -c mandigo-1.8/pink.css mandigo-1.9/pink.css
*** mandigo-1.8/pink.css 2007-02-02 11:08:25.000000000 -0500
--- mandigo-1.9/pink.css 2007-02-14 16:32:12.000000000 -0500
***************
*** 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); }
--- 1,3 ----
diff -c mandigo-1.8/purple.css mandigo-1.9/purple.css
*** mandigo-1.8/purple.css 2007-02-02 11:08:32.000000000 -0500
--- mandigo-1.9/purple.css 2007-02-14 16:32:16.000000000 -0500
***************
*** 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); }
--- 1,3 ----
diff -c mandigo-1.8/red.css mandigo-1.9/red.css
*** mandigo-1.8/red.css 2007-02-02 11:08:40.000000000 -0500
--- mandigo-1.9/red.css 2007-02-14 16:32:20.000000000 -0500
***************
*** 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); }
--- 1,3 ----
diff -c mandigo-1.8/style.css mandigo-1.9/style.css
*** mandigo-1.8/style.css 2007-02-02 12:57:58.000000000 -0500
--- mandigo-1.9/style.css 2007-02-14 16:34:32.000000000 -0500
***************
*** 1,675 ****
/*
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/
*/
-
-
- /* Begin Typography & Colors */
- body {
- font-size: 62.5%; /* Resets 1em to 10px */
- font-family: Arial, Sans-Serif;
- color: #333;
- text-align: center;
- }
-
- #page {
- text-align: left;
- }
-
- #content {
- font-size: 1.2em;
- }
-
- .widecolumn .entry p {
- font-size: 1.05em;
- }
-
- .narrowcolumn .entry, .widecolumn .entry {
- line-height: 1.4em;
- }
-
- .widecolumn {
- line-height: 1.6em;
- }
-
- .narrowcolumn .postmetadata {
- text-align: left;
- }
-
- .alt {
- background-color: #fafafa;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- }
-
- #footer {
- border: none;
- }
-
- small {
- font-family: Arial, Helvetica, Sans-Serif;
- font-size: 0.9em;
- line-height: 1.5em;
- }
-
- h1, h2, h3 {
- font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
- font-weight: bold;
- }
-
- h1 {
- font-size: 4em;
- }
-
- #headerimg .description {
- font-size: 1.2em;
- }
-
- h2 {
- font-size: 1.6em;
- }
-
- h2.pagetitle {
- font-size: 1.6em;
- }
-
- #sidebar h2 {
- font-family: 'Lucida Grande', Verdana, Sans-Serif;
- font-size: 1.2em;
- }
-
- h3 {
- font-size: 1.3em;
- }
-
- h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description {
- text-decoration: none;
- color: white;
- }
-
- h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
- color: #333;
- }
-
- h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite {
- text-decoration: none;
- }
-
- .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;
- }
-
- .commentmetadata {
- font-weight: normal;
- }
-
- #sidebar {
- font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
- }
-
- small, #sidebar ul li, #sidebar ol li, .nocomments, .postmetadata, strike {
- color: #777;
- }
-
- code {
- font: 1em 'Courier New', Courier, Fixed;
- }
-
- blockquote {
- color: #555;
- font-style: italic;
- }
-
- em {
- font-style: normal;
- font-weight: bold;
- }
- acronym, abbr, span.caps {
- font-size: 0.9em;
- letter-spacing: .07em;
- }
-
- a, h2 a:hover, h3 a:hover {
- text-decoration: none;
- }
-
- a:hover {
- text-decoration: underline;
- }
-
- #wp-calendar #prev a, #wp-calendar #next a {
- font-size: 9pt;
- }
-
- #wp-calendar a {
- text-decoration: none;
- }
-
- #wp-calendar caption {
- font: bold 1.2em 'Lucida Grande', Verdana, Arial, Sans-Serif;
- }
-
- #wp-calendar th {
- font-style: normal;
- text-transform: capitalize;
- }
- /* End Typography & Colors */
-
-
-
- /* Begin Structure */
- body {
- margin: 0 0 20px 0;
- padding: 0;
- }
-
- #page {
- margin: 20px auto;
- padding: 0;
- width: 763px;
- }
-
- #header {
- margin: 0;
- padding: 0;
- height: 243px;
- width: 763px;
- }
-
- #headerimg {
- margin: 0;
- position: relative;
- left: 13px;
- top: 11px;
- height: 226px;
- width: 737px;
- }
-
- #headerimg h1, #headerimg .description {
- padding-left: 15px;
- }
-
- .narrowcolumn {
- float: left;
- padding: 0 0 20px 35px;
- margin: 0;
- width: 460px;
- }
-
- .widecolumn {
- padding: 10px 0 20px 0;
- margin: 5px 0 0 100px;
- width: 550px;
- }
-
- .post {
- text-align: justify;
- padding: 5px 15px;
- margin: 10px -15px;
- background: #fafafa;
- border: 1px solid #eee;
- height: 1%; /* peekaboo */
- clear: both;
- }
-
- .widecolumn .post { margin: 0; }
- .narrowcolumn .postdata { padding-top: 5px; }
- .widecolumn .postmetadata { margin: 30px 0; }
-
- .widecolumn .smallattachment {
- text-align: center;
- float: left;
- width: 128px;
- margin: 5px 5px 5px 0px;
- }
-
- .widecolumn .attachment {
- text-align: center;
- margin: 5px 0px;
- }
-
- .postmetadata, .entry { clear: both; }
-
- #footer {
- padding: 0;
- margin: 0 auto;
- width: 763px;
- height: 68px;
- clear: both;
- }
-
- #footer p {
- margin: 0;
- padding: 10px 0 0 0;
- text-align: center;
- }
- /* End Structure */
-
-
- /* Begin Headers */
- h1 {
- padding-top: 15px;
- margin: 0;
- }
-
- h2 { margin: 0; }
-
- h2.pagetitle {
- margin-top: 30px;
- text-align: center;
- }
-
- #sidebar h2 {
- margin: 5px 0 0;
- padding: 0;
- }
-
- h3 {
- padding: 0;
- margin: 0;
- }
-
- h3.comments {
- padding: 0;
- margin: 40px auto 20px ;
- }
- /* End Headers */
-
-
- /* Begin Images */
- p img {
- padding: 0;
- max-width: 95%;
- }
-
- .entry img {
- float: left;
- margin: 3px 10px;
- background: #fff;
- border: 1px solid #333;
- padding: 3px;
- }
-
- .entry img.wp-smiley, .nofloat {
- float: none;
- margin: 0;
- background: inherit;
- border: 0;
- padding: 0;
- }
-
- img.noborder {
- background: inherit;
- border: 0;
- padding: inherit;
- }
-
- img.centered {
- display: block;
- margin-left: auto;
- margin-right: auto;
- float: none;
- }
-
- img.alignright {
- display: inline;
- float: right;
- }
-
- img.alignleft {
- display: inline;
- float: left;
- }
- .alignright { float: right; }
- .alignleft { float: left }
- /* End Images */
-
-
- /* Begin Lists */
- html>body .entry ul {
- margin-left: 0;
- padding: 0 0 0 20px;
- list-style: none;
- list-style-type: circle;
- }
-
- html>body .entry li { margin: 7px 0 8px 5px; }
-
- .entry ol {
- padding: 0 0 0 20px;
- margin: 0;
- }
-
- .entry ol li {
- margin: 0;
- padding: 0;
- }
-
- .postdata ul, .postmetadata li {
- display: inline;
- list-style-type: none;
- list-style-image: none;
- }
-
- #sidebar ul, #sidebar ul ol {
- margin: 0;
- padding: 0;
- }
-
- #sidebar li {
- list-style-type: none;
- margin-bottom: 15px;
- margin-left: 25px;
- }
- #sidebar ul li {
- list-style-type: circle;
- list-style-image: none;
- }
-
- #sidebar p, #sidebar select {
- margin: 5px 0 8px;
- }
-
- #sidebar ul, #sidebar ol {
- margin: 5px 0 0 5px;
- }
-
- #sidebar ul ul, #sidebar ol {
- margin: 0 0 0 10px;
- }
-
- ol li, #sidebar ol li { list-style: decimal outside; }
-
- #sidebar ul li, #sidebar ol li {
- margin: 3px 0 0;
- padding: 0;
- }
- /* End Entry Lists */
-
-
-
- /* Begin Form Elements */
- #searchform {
- margin: 0 auto;
- padding: 0 3px;
- text-align: center;
- }
-
- #sidebar #searchform #s {
- border: 1px dashed #ddd;
- width: 140px;
- padding: 2px;
- }
-
- #sidebar #searchsubmit {
- padding: 0;
- position: relative;
- top: 6px;
- }
-
- .entry form {
- text-align: center;
- }
- select {
- width: 130px;
- }
-
- #commentform input {
- width: 170px;
- padding: 2px;
- margin: 5px 5px 1px 0;
- }
-
- #commentform textarea {
- width: 100%;
- padding: 2px;
- }
-
- #commentform #submit {
- margin: 0;
- float: right;
- }
- /* End Form Elements */
-
-
-
- /* Begin Comments*/
- .alt {
- margin: 0;
- padding: 10px;
- }
-
- .commentlist {
- padding: 0;
- text-align: justify;
- }
-
- .commentlist li {
- margin: 15px 0 3px;
- padding: 5px 10px 3px;
- list-style: none;
- }
-
- .commentlist p {
- margin: 10px 5px 10px 0;
- }
-
- #commentform p {
- margin: 5px 0;
- }
-
- .nocomments {
- text-align: center;
- margin: 0;
- padding: 0;
- }
-
- .commentmetadata {
- margin: 0;
- display: block;
- }
- /* End Comments */
-
-
-
- /* Begin Sidebar */
- #sidebar {
- margin-left: 522px;
- width: 210px;
- background: #eee;
- border: 1px solid #ddd;
- padding: 5px;
- margin-top: 1em;
- }
- #sidebar form { margin: 0; }
- /* End Sidebar */
-
-
- /* 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;
- }
-
- #wp-calendar #prev a {
- padding-left: 10px;
- text-align: left;
- }
-
- #wp-calendar a {
- display: block;
- }
-
- #wp-calendar #today {
- background: white;
- }
-
- #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 */
-
-
- /* Begin Various Tags & Classes */
- acronym, abbr, span.caps {
- cursor: help;
- }
-
- acronym, abbr {
- border-bottom: 1px dashed #999;
- }
-
- blockquote {
- margin: 15px 10px 0 10px;
- padding: 0 20px 0 20px;
- border-left: 5px solid #ddd;
- border: 1px dashed #ddd;
- border-left: 0;
- border-right: 0;
- background: #fff;
- }
-
- .center {
- text-align: center;
- }
-
- a img {
- border: none;
- }
-
- .navigation {
- display: block;
- text-align: center;
- margin-top: 10px;
- margin-bottom: 60px;
- }
-
- .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: 10px;
- bottom: 0;
- text-align: right;
- padding: .6em 0;
- width: 100%;
- }
-
- ul.pages {
- margin: 0;
- }
-
- .pages_ie {
- margin-bottom: -1em;
- }
- .pages ul {
- display: none;
- }
-
- .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; }
- .postinfo h2, .postinfo h3 { line-height: .9em; }
-
- .head_overlay {
- background: url(images/head_overlay.png);
- }
-
- #rss {
- float: right;
- padding-right: 4px;
- }
- /* End Various Tags & Classes*/
--- 1,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 two widths and SEVEN color schemes!
! Version: 1.9
Author: t0mmmmmmm
Author URI: http://www.onehertz.com/portfolio/
*/
Only in mandigo-1.9: style.css.php
diff -c mandigo-1.8/teal.css mandigo-1.9/teal.css
*** mandigo-1.8/teal.css 2007-02-02 11:12:15.000000000 -0500
--- mandigo-1.9/teal.css 2007-02-14 16:32:25.000000000 -0500
***************
*** 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; }
--- 1,3 ----