Opened 5 years ago

Closed 5 years ago

Last modified 5 years ago

#6123 closed defect (bug) (wontfix)

Auto-center .wrap in admin

Reported by: mistycabal Owned by: anonymous
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)

global.css (2.0 KB) - added by mistycabal 5 years ago.
Modified version to center automatically.

Download all attachments as: .zip

Change History (5)

Modified version to center automatically.

  • Keywords has-patch added

-1

I like it better left aligned.

comment:3   ryan5 years ago

  • Resolution set to wontfix
  • Status changed from new to closed

comment:4   ryan5 years ago

  • Milestone 2.6 deleted
Note: See TracTickets for help on using tickets.