Ticket #629 (closed defect: fixed)

Opened 4 months ago

Last modified 1 month ago

CSS in wp-signup.php and wp-activate.php affecting other forms.

Reported by: amanzi Assigned to: somebody
Priority: normal Milestone:
Component: component1 Version:
Severity: normal Keywords:
Cc:

Description

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; }

Change History

07/21/08 16:49:32 changed by donncha

  • status changed from new to closed.
  • resolution set to fixed.

CSS has been updated, so this is obsolete!