#4402 closed enhancement (fixed)
RE-align checkboxes with icons and text in Settings > BP > Components panel
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.6.1 |
| Component: | Administration | Version: | 1.6 |
| Severity: | minor | Keywords: | has-patch reporter-feedback |
| Cc: |
Description
The fix to align boxes with icons in Components panel for BP 1.6 RC2 https://buddypress.trac.wordpress.org/ticket/4390 is no longer valid for BP 1.6 as the form ID was changed from #bp-admin-component-form to #bp-wizard-form
The new fix:
#bp-admin-component-form .widefat th {
display: table-cell;
vertical-align: top;
}
Image reference - https://buddypress.trac.wordpress.org/attachment/ticket/4390/BP-16RC2-components-panel.jpg
Change History (5)
comment:1
boonebgorges — 10 months ago
- Keywords reporter-feedback added
comment:2
boonebgorges — 10 months ago
- Milestone changed from Awaiting Review to 1.6.1
Anyway, I assume you mean that the "new" fix should have the id #bp-wizard-form, correct?
Yes Boone. Was surprised when I saw that the boxes were not aligned going through installation wizard. Thank you :-)
#bp-wizard-form .widefat th {
display: table-cell;
vertical-align: top;
}
comment:4
boonebgorges — 10 months ago
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Are you sure that the ID *changed*? I'm pretty sure it's just that, strictly speaking, there are two forms: the one used during the wizard setup (#bp-wizard-form) and the one used in the component admin (#bp-admin-component-form).
Anyway, I assume you mean that the "new" fix should have the id #bp-wizard-form, correct? ("New" is in scare quotes because this is, in fact, a *missing* declaration, rather than a replacement.)