[wpmu-trac] [WordPress MU Trac] #629: CSS in wp-signup.php and wp-activate.php affecting other forms.

WordPress MU Trac wpmu-trac at lists.automattic.com
Thu May 15 09:02:14 GMT 2008


#629: CSS in wp-signup.php and wp-activate.php affecting other forms.
------------------------+---------------------------------------------------
 Reporter:  amanzi      |       Owner:  somebody
     Type:  defect      |      Status:  new     
 Priority:  normal      |   Milestone:          
Component:  component1  |     Version:          
 Severity:  normal      |    Keywords:          
------------------------+---------------------------------------------------
 The CSS that is included in wp-signup.php on line 29, and wp-activate.php
 on line 12 affects all forms on those pages which is a problem if you have
 a search or login form in the header section of your site (like I do.) The
 following simple fixes will fix the problem: (sorry I don't have a diff
 file.)

 wp-signup.php - line 29, change this:

 {{{
 form { margin-top: 2em; }
 }}}

 to this:

 {{{
 form#setupform { margin-top: 2em; }
 }}}

 And in wp-activate.php - line 12,
 change this:

 {{{
 form{ margin-top: 2em; }
 }}}

 to this:

 {{{
 form#activateform { margin-top: 2em; }
 }}}

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/629>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list