diff --git a/css/default_shop.css b/css/default_shop.css
index ef9c80a1d..6da787ebb 100644
--- a/css/default_shop.css
+++ b/css/default_shop.css
@@ -123,6 +123,20 @@ a:active {color:#000;text-decoration:underline}
#container {z-index:4;position:relative;float:left;padding:25px 15px 15px;width:728px;min-height:500px;height:auto !important;height:500px;border:1px solid #cfded8;background:#fff;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
+#sev {margin:0 0 5px;padding:0 0 10px;border:1px solid #ecc9d6;background:#fff8fb}
+#sev h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
+#sev ul {margin:0;padding:10px 0 0;border:0;background:#fff;list-style:none}
+#sev .sev_img {display:block;border-bottom:1px solid #faedf2}
+#sev .sev_text {display:block;padding:7px 10px 5px;border-bottom:1px solid #faedf2;text-decoration:none}
+#sev strong {}
+#sev_empty {padding:15px 0;text-align:center}
+
+#scomm {margin:0 0 5px;padding:0 0 10px;border:1px solid #d5d5d5;background:#faf9f5}
+#scomm h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
+#scomm ul {margin:0;padding:10px 0 0;border:0;background:#fff;list-style:none}
+#scomm a {display:block;padding:7px 10px 5px;border-bottom:1px solid #f4f4f4;text-decoration:none}
+#scomm_empty {padding:15px 0;text-align:center}
+
/* 텍스트 크기 조절 */
#text_size {position:absolute;top:-31px;left:-1px}
#text_size button {padding:0 10px;height:30px;border:1px solid #cfded8;border-bottom:0;background:#000;color:#fff;cursor:pointer}
diff --git a/shop/boxcommunity.inc.php b/shop/boxcommunity.inc.php
index 61ebd5b01..1de3d9d9c 100644
--- a/shop/boxcommunity.inc.php
+++ b/shop/boxcommunity.inc.php
@@ -2,20 +2,22 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
-
- |
-
-$hsql = " select bo_table, bo_subject from {$g4['board_table']} order by gr_id, bo_table ";
-$hresult = sql_query($hsql);
-for ($i=0; $row=sql_fetch_array($hresult); $i++)
-{
- if ($i > 0)
- echo " |
\n";
+
+ '.$row['bo_subject'].''.PHP_EOL;
+ }
+
+ if ($i==0)
+ echo '이벤트 없음'.PHP_EOL;
+ ?>
+
+
+
\ No newline at end of file
diff --git a/shop/boxevent.inc.php b/shop/boxevent.inc.php
index 51932df15..86e514570 100644
--- a/shop/boxevent.inc.php
+++ b/shop/boxevent.inc.php
@@ -2,29 +2,37 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
-
- |
-
-$hsql = " select ev_id, ev_subject, ev_subject_strong from {$g4['shop_event_table']} where ev_use = '1' order by ev_id desc ";
-$hresult = sql_query($hsql);
-for ($i=0; $row=sql_fetch_array($hresult); $i++)
-{
- if ($i > 0)
- echo " |
\n";
+
+ 쇼핑몰 이벤트
- $href = G4_SHOP_URL."/event.php?ev_id={$row['ev_id']}";
+
-if ($i==0)
- echo "| 등록된 자료가 없습니다. |
\n";
-?>
-
+
\ No newline at end of file