add_action( 'wp_head', 'theme_wpmu_signup_stylesheet',1 );
function theme_wpmu_signup_stylesheet() {
remove_action( 'wp_head', 'wpmu_signup_stylesheet');
?>
<style type="text/css">
.mu_register { margin:0 auto; }
.mu_register form { margin-top: 2em; }
.mu_register .error,.mu_register .mu_alert {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #bbb;
padding:10px;
margin-bottom: 20px;
}
.mu_register .error {
background: #FDE9EA;
color: #A14A40;
border-color: #FDCED0;
}
.mu_register input[type="submit"],
.mu_register #blog_title,
.mu_register #user_email,
.mu_register #blogname,
.mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
.mu_register .prefix_address,
.mu_register .suffix_address {font-size: 18px;display:inline; }
.mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
.mu_register label.checkbox { display:inline; }
.mu_register .mu_alert {
background: #FFF9CC;
color: #736B4C;
border-color: #FFDB4F;
}
</style>
<?php
}
// before wp-signup.php and before get_header()
add_action('before_signup_form', 'theme_before_signup_form');
function theme_before_signup_form () {
$output = '<div id="feature">';
$output .= '<div class="top_shadow"></div>';
$output .= '<div class="inner">';
$output .= '<h1>Sign Up Now</h1>';
$output .= '</div>';
$output .= '<div class="bottom_shadow"></div>';
$output .= '</div>';
$output .= '<div id="page">';
$output .= '<div class="inner">';
echo $output;
}
// after wp-signup.php and before get_footer()
add_action('after_signup_form', 'theme_after_signup_form');
function theme_after_signup_form () {
echo '</div>';
echo '<div id="page_bottom"></div>';
echo '</div>';
}
It looks like you're new here. If you want to get involved, click one of these buttons!