diff --git a/modules/addon/addon.admin.model.php b/modules/addon/addon.admin.model.php
index aae2a8454..6808c1416 100644
--- a/modules/addon/addon.admin.model.php
+++ b/modules/addon/addon.admin.model.php
@@ -33,6 +33,7 @@
$searched_list = FileHandler::readDir('./addons');
$searched_count = count($searched_list);
if(!$searched_count) return;
+ sort($searched_list);
for($i=0;$i<$searched_count;$i++) {
// 애드온의 이름
diff --git a/modules/admin/tpl/css/admin.css b/modules/admin/tpl/css/admin.css
index ce4f4797d..bc70ad913 100644
--- a/modules/admin/tpl/css/admin.css
+++ b/modules/admin/tpl/css/admin.css
@@ -76,8 +76,9 @@ h3 .gray { color:#9d9d9d;}
.adminTable td .graph .bar { width:100%; position:absolute; margin-top:4px;}
.adminTable td .graph .num { position:relative; background:#ffffff; color:#636363; font:.9em Tahoma; padding-left:10px; white-space:nowrap;}
-.admin_news { width:540px; float:left; margin-right:10px; }
+.admin_news { width:470px; float:left; margin-right:10px; }
.admin_link { width:300px; float:right; }
+.admin_link td, .admin_news td { height:18px; }
select.time_zone { width:70%; position:relative; top:4px; }
.gap1 { margin-top:.8em; }
diff --git a/modules/admin/tpl/css/admin_layout.css b/modules/admin/tpl/css/admin_layout.css
index 82b0b5086..412b34fc1 100644
--- a/modules/admin/tpl/css/admin_layout.css
+++ b/modules/admin/tpl/css/admin_layout.css
@@ -2,11 +2,11 @@
body { background:url("../images/admin_background.gif") repeat-x left top; background-color:#DBD8D3; }
-#adminLayout { background:url("../images/admin_logo.gif") no-repeat left top; background-color:#F8F6F2; overflow:hidden; width:1050px; border-right:1px solid #B2B2B2; margin:5px 0 0 5px; }
+#adminLayout { background:url("../images/admin_logo.gif") no-repeat left top; background-color:#F8F6F2; overflow:hidden; width:980px; border-right:1px solid #B2B2B2; margin:5px 0 0 5px; }
-#adminContentBody { width:850px; float:left; background-color:#FFFFFF; padding:25px 10px 20px 10px; vertical-align:top; background:url(../images/admin_top_bg.gif) repeat-x left top; background-color:#FFFFFF; }
+#adminContentBody { width:780px; float:left; background-color:#FFFFFF; padding:25px 10px 20px 10px; vertical-align:top; background:url(../images/admin_top_bg.gif) repeat-x left top; background-color:#FFFFFF; }
-#adminLayoutBottom { background:url("../images/admin_bottom_bg.gif") repeat-x left top; height:3px; clear:both; overflow:hidden; width:1051px; margin:0 0 0 5px; }
+#adminLayoutBottom { background:url("../images/admin_bottom_bg.gif") repeat-x left top; height:3px; clear:both; overflow:hidden; width:981px; margin:0 0 0 5px; }
#adminMenuContent { width:179px; float:left; margin-top:70px; padding-bottom:20px; vertical-align:top; background:none; overflow:hidden; border-right:1px solid #B2B2B2; }
@@ -35,6 +35,6 @@ body { background:url("../images/admin_background.gif") repeat-x left top; backg
#adminMenuContent li.on a { color:#000000; }
-#adminLayoutCopyright { width:1000px; text-align:right; margin-top:10px; font-size:.8em; font-family:tahoma; color:#888888; padding-bottom:50px; }
+#adminLayoutCopyright { width:930px; text-align:right; margin-top:10px; font-size:.8em; font-family:tahoma; color:#888888; padding-bottom:50px; }
#adminLayoutCopyright a { color:#666666; text-decoration:none; }
#adminLayoutCopyright a span.red { color:#9A1827; }
diff --git a/modules/editor/queries/getComponentList.xml b/modules/editor/queries/getComponentList.xml
index 11d3adc06..3820ba151 100644
--- a/modules/editor/queries/getComponentList.xml
+++ b/modules/editor/queries/getComponentList.xml
@@ -9,6 +9,6 @@
-
+
diff --git a/modules/module/module.model.php b/modules/module/module.model.php
index 8a66931e6..20228fb20 100644
--- a/modules/module/module.model.php
+++ b/modules/module/module.model.php
@@ -553,6 +553,7 @@
$searched_list = FileHandler::readDir('./modules');
$searched_count = count($searched_list);
if(!$searched_count) return;
+ sort($searched_list);
for($i=0;$i<$searched_count;$i++) {
// 모듈의 이름
diff --git a/modules/widget/widget.model.php b/modules/widget/widget.model.php
index 951dc9492..91c8ac776 100644
--- a/modules/widget/widget.model.php
+++ b/modules/widget/widget.model.php
@@ -33,6 +33,7 @@
$searched_list = FileHandler::readDir('./widgets');
$searched_count = count($searched_list);
if(!$searched_count) return;
+ sort($searched_list);
// 찾아진 위젯 목록을 loop돌면서 필요한 정보를 간추려 return
for($i=0;$i<$searched_count;$i++) {