#6123 closed defect (bug) (wontfix)
Auto-center .wrap in admin
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | Administration | Version: | 2.5 |
| Severity: | minor | Keywords: | .wrap, has-patch |
| Cc: |
Description
On a larger screen the admin backend is very noticeably left aligned. Can be easily made to automatically be centered by a change to the .wrap css. Personally I think it looks much better that way, and would solve the problem with people who are talking on the forums about the extra white-space on the side.
From line 85 in file: wp-admin/css/global.css
.wrap, .updated, .error {
margin: 0;
margin-left: 15px;
margin-right: 15px;
padding: 0;
max-width: 980px;
}
Change to:
.updated, .error {
margin: 0;
margin-left: 15px;
margin-right: 15px;
padding: 0;
max-width: 980px;
}
.wrap {margin:0 auto; padding:0 15px; max-width: 980px;}
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.

Modified version to center automatically.