Active
Project:
Amity Island
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Sep 2010 at 16:14 UTC
Updated:
20 Sep 2010 at 16:14 UTC
It bugs me that the Admin screen is in one column. There is plenty of room for two, so anyone who wants two columns should edit their theme css file in themes/amity_island/css/admin.css, and look for the css:
div.admin .left, div.admin .right {
margin-left: 0em;
margin-right: 0em;
}and change it to:
div.admin .right {
float:right;
width:48%;
margin-left: 0em;
margin-right: 0em;
}
div.admin .left
float:left;
width:48%;
margin-left: 0em;
margin-right: 0em;
}