OK, using 1.3.3 and i am trying to get the wpsignup page to "fit" into my theme. I use <div class="primary"> to "fit" stuff into the theme. The code i am trying to place inside the div is:
echo '<h2>' . sprintf( __('Get another %s blog in seconds'), $current_site->site_name ) . '</h2>';
I have tried echo '<div class="primary">' '<h2>' . sprintf( __('Get another %s blog in seconds'), $current_site->site_name ) . '</h2>' '</div>';
This gives me a white page when accessing wp-signup. How do you put a div in this code?