thenbrent 0 Report post Posted June 28, 2010 Hi Team, Because EcoPro includes the content wrapping divs in the page/post template file rather than header/footer files, wp-signup.php on a multi-site installation of WordPress 3.0 shows in a quirky full width. The content wrapping divs should be included in the header (and footer) so this page displays correctly. Or, if you just want a quick hack, like I did, to save throwing half a dozen if/else statements at the top of header, something like this will work for only the wp-signup.php page: if( strpos( $_SERVER[ 'REQUEST_URI' ], 'wp-signup.php' ) != false ) { include(THEME_LIB.'/_spotlight.php'); include(THEME_LIB.'/_sub_head.php'); echo '<div id="pagecontent" class="contentcontainer fix"><div class="texture fix"><div class="content>'; } Cheers, Brent Share this post Link to post Share on other sites