Changeset 2453
- Timestamp:
- 01/25/2010 04:41:21 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-signup.php
r2452 r2453 271 271 272 272 if ( locate_template( array( 'registration/register.php' ), false ) || locate_template( array( 'register.php' ), false ) ) 273 wp_redirect( bp_get_root_domain() . '/' . BP_REGISTER_SLUG );273 wp_redirect( bp_get_root_domain() . '/' . BP_REGISTER_SLUG . '/' ); 274 274 } 275 275 if ( bp_core_is_multisite() ) -
trunk/bp-themes/bp-default/_inc/css/default.css
r2448 r2453 25 25 } 26 26 27 h1 { font-size: 28px; margin-bottom: 35px; }28 h2 { font-size: 24px; margin-bottom: 30px; }27 h1 { font-size: 28px; margin-bottom: 25px; } 28 h2 { font-size: 24px; margin-bottom: 20px; } 29 29 h3 { font-size: 20px; } 30 30 h4 { font-size: 16px; margin-bottom: 15px; } … … 296 296 div#item-header h2 { 297 297 font-size: 28px; 298 margin: 5px 0 15px 0; 298 margin: 0 0 15px 0; 299 line-height: 120%; 299 300 } 300 301 div#item-header h2 a { … … 309 310 310 311 div#item-header span.activity { 311 margin: 0 0 -2px 4px;312 margin: 0 0 5px 4px; 312 313 vertical-align: bottom; 313 314 font-size: 11px; … … 315 316 line-height: 170%; 316 317 } 318 .groups div#item-header span.activity { margin-bottom: -2px; } 317 319 318 320 div#item-header div#item-meta { 319 321 font-size: 14px; 320 322 color: #aaa; 321 margin: 15px 0 5px 0;322 323 padding-bottom: 10px; 323 324 overflow: hidden; 325 margin: 15px 0 5px 0; 324 326 } 325 327 … … 1493 1495 div#topic-meta { 1494 1496 position: relative; 1497 padding: 5px 0; 1495 1498 } 1496 1499 div#topic-meta h3 { -
trunk/bp-themes/bp-default/groups/create.php
r2428 r2453 61 61 <?php endif; ?> 62 62 63 <h3><?php _e( 'Privacy Options', 'buddypress' ); ?></h3> 63 <hr /> 64 65 <h4><?php _e( 'Privacy Options', 'buddypress' ); ?></h4> 64 66 65 67 <div class="radio"> -
trunk/bp-themes/bp-default/registration/register.php
r2389 r2453 24 24 <?php /***** Basic Account Details ******/ ?> 25 25 26 <h 3><?php _e( 'Account Details', 'buddypress' ) ?></h3>26 <h4><?php _e( 'Account Details', 'buddypress' ) ?></h4> 27 27 28 28 <label for="signup_username"><?php _e( 'Username', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label> … … 53 53 <div class="register-section" id="profile-details-section"> 54 54 55 <h 3><?php _e( 'Profile Details', 'buddypress' ) ?></h3>55 <h4><?php _e( 'Profile Details', 'buddypress' ) ?></h4> 56 56 57 57 <?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?> … … 169 169 <div class="register-section" id="blog-details-section"> 170 170 171 <h 3><?php _e( 'Blog Details', 'buddypress' ) ?></h3>171 <h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4> 172 172 173 173 <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new blog', 'buddypress' ) ?></p> … … 230 230 <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?> 231 231 232 <h 3><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h3>232 <h4><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h4> 233 233 <p><?php _e( "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?", 'buddypress' ) ?></p> 234 234
Note: See TracChangeset
for help on using the changeset viewer.