레프트메뉴에 컨텐츠영역을 float:left 시켜는거 여쭤봐요^^
본문
쇼핑몰을 제작하고 있는중인데, 영카트5는 처음이라 헷갈려서 여쭤봅니다
shop.head.php는
<div id="wrapper">
<?php include(G5_SHOP_SKIN_PATH.'/boxtodayview.skin.php'); // 오늘 본 상품 ?>
<!-- } 상단 끝 -->
<!-- 콘텐츠 시작 { -->
<div id="container" style="border:1px solid #f00">
<!-- 레프트메뉴 -->
<div id="aside">
<?if($PHP_SELF == "/index.php" ){?>
<?}else if($PHP_SELF == "/shop/list.php" or $PHP_SELF == "/shop/mypage.php" or $PHP_SELF == "/bbs/board.php" or $PHP_SELF == "/shop/item.php" or $PHP_SELF == "/shop/orderform.php"){ //샵리스트,마이페이지,게시판?>
<div><?php include_once(G5_SHOP_SKIN_PATH.'/boxcategory.skin.php'); // 레프트메뉴 ?></div>
<?}else{?>
<?}?>
</div>
<!-- 레프트메뉴 -->
<!-- <?php if ((!$bo_table || $w == 's' ) && !defined('_INDEX_')) { ?><div id="wrapper_title"><?php echo $g5['title'] ?></div><?php } ?> -->
<!-- 글자크기 조정 display:none 되어 있음 시작 { -->
<div id="text_size">
<button class="no_text_resize" onclick="font_resize('container', 'decrease');">작게</button>
<button class="no_text_resize" onclick="font_default('container');">기본</button>
<button class="no_text_resize" onclick="font_resize('container', 'increase');">크게</button>
</div>
<!-- } 글자크기 조정 display:none 되어 있음 끝 -->
이렇구요
이에 대한 css는
/* aside wrapper */
#container {position:relative;float:left;width:1000px;min-height:500px;height:auto !important;height:500px;background:#fff;zoom:1;}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#aside {float:left; width:190px; margin-right:15px;}
이렇게 되어있어요.
근데 사용자 화면에는
이런 결과물이 나오네요 ㅜㅜ
테이블만 하다 디아이브이를 하게되니 헷갈려요 ㅜㅜ
도와주세요 ^^