diff -c mandigo-1.13/README.txt mandigo-1.13.1/README.txt *** mandigo-1.13/README.txt 2007-03-08 20:38:06.000000000 -0500 --- mandigo-1.13.1/README.txt 2007-03-09 21:56:16.000000000 -0500 *************** *** 128,133 **** --- 128,137 ---- === CHANGELOG ========================================================================== + 1.13.1 + * fixed an issue which caused sidebars to overflow when the second sidebar was too long + to fit the main area + 1.13 + added the 3-column layout + added options to move the sidebars left/right diff -c mandigo-1.13/footer.php mandigo-1.13.1/footer.php *** mandigo-1.13/footer.php 2007-03-08 20:33:12.000000000 -0500 --- mandigo-1.13.1/footer.php 2007-03-09 21:47:23.000000000 -0500 *************** *** 30,36 **** cnt = document.getElementById("content" ); sb1 = document.getElementById("sidebar1"); sb2 = document.getElementById("sidebar2"); ! if (sb1 && cnt.clientHeight < sb1.clientHeight) { if (sb2) { cnt.style.height = (sb1.clientHeight>sb2.clientHeight?sb1.clientHeight:sb2.clientHeight) +'px'; } else { cnt.style.height = sb1.clientHeight +'px'; } } --- 30,36 ---- cnt = document.getElementById("content" ); sb1 = document.getElementById("sidebar1"); sb2 = document.getElementById("sidebar2"); ! if ((sb1 && cnt.clientHeight < sb1.clientHeight) || (sb2 && cnt.clientHeight < sb2.clientHeight)) { if (sb2) { cnt.style.height = (sb1.clientHeight>sb2.clientHeight?sb1.clientHeight:sb2.clientHeight) +'px'; } else { cnt.style.height = sb1.clientHeight +'px'; } } Common subdirectories: mandigo-1.13/images and mandigo-1.13.1/images diff -c mandigo-1.13/style.css mandigo-1.13.1/style.css *** mandigo-1.13/style.css 2007-03-08 20:37:22.000000000 -0500 --- mandigo-1.13.1/style.css 2007-03-09 21:55:39.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 two widths, SEVEN color schemes and eighteen languages! ! Version: 1.13 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 two widths, SEVEN color schemes and eighteen languages! ! Version: 1.13.1 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */