[wp-trac] [WordPress Trac] #6123: Auto-center .wrap in admin

WordPress Trac wp-trac at lists.automattic.com
Fri Mar 7 14:47:29 GMT 2008


#6123: Auto-center .wrap in admin
----------------------------+-----------------------------------------------
 Reporter:  mistycabal      |       Owner:  anonymous
     Type:  defect          |      Status:  new      
 Priority:  low             |   Milestone:  2.5      
Component:  Administration  |     Version:  2.5      
 Severity:  minor           |    Keywords:  .wrap    
----------------------------+-----------------------------------------------
 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;}
 }}}

-- 
Ticket URL: <http://trac.wordpress.org/ticket/6123>
WordPress Trac <http://trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list