묻고답하기
1.7헤더 부분을 크게 하고 싶은데 방법쯤 알려주세요.
2013.09.04 11:39
xe1.7 버전으로 고생하고 있는 초보입니다.
다름이 아니라 위에 사진 두께 사이즈를 크게 하고 싶은데 어디서 조절하는지 잘 몰라 문의 드립니다.
제가 알고 있는 상식에선 HTML 에서 수정하는 것 같은데 혹시 이 부분에서 수정하는거라면
정확히 어디 부분에서 크기 조절을 하는지 설명 해 주시면 감사하겠습니다.
<load target="js/xe_official.js" />
<load target="css/default.css" cond="$layout_info->colorset=='default' || !$layout_info->colorset" />
<load target="css/white.css" cond="$layout_info->colorset=='white'" />
<load target="css/black.css" cond="$layout_info->colorset=='black'" />
<style cond="$layout_info->background_image">
body{background:url({$layout_info->background_image}) repeat-x left top;}
</style>
<!--@if(!$layout_info->colorset)-->{@$layout_info->colorset = "default"}<!--@end-->
<div class="xe">
<div class="header">
<h1>
<a href="{$layout_info->index_url}" cond="$layout_info->logo_image"><img src="{$layout_info->logo_image}" alt="logo" border="0" /></a>
<a href="{$layout_info->index_url}" cond="!$layout_info->logo_image">{$layout_info->logo_image_alt}</a>
</h1>
<div class="language">
<strong title="{$lang_type}">{$lang_supported[$lang_type]}</strong> <button type="button" class="toggle"><img src="./images/{$layout_info->colorset}/buttonLang.gif" alt="Select Language" width="87" height="15" /></button>
<ul class="selectLang">
<li loop="$lang_supported=>$key,$val" cond="$key!= $lang_type"><button type="button" onclick="doChangeLangType('{$key}');return false;">{$val}</button></li>
</ul>
</div>
<div class="gnb">
<ul>
<li loop="$main_menu->list=>$key1,$val1" class="active"|cond="$val1['selected']"><a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a>
<ul cond="$val1['list']">
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a></li>
</ul>
</li>
</ul>
</div>
<form action="{getUrl()}" method="post" class="iSearch">
<input type="hidden" name="vid" value="{$vid}" cond="$vid" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="act" value="IS" />
<input type="hidden" name="search_target" value="title_content" />
<input name="is_keyword" type="text" class="iText" title="keyword" />
<input type="image" src="./images/{$layout_info->colorset}/buttonSearch.gif" alt="{$lang->cmd_search}" class="submit" />
</form>
</div>
<div class="body">
<div class="lnb">
<img widget="login_info" skin="xe_official" colorset="{$layout_info->colorset}" />
<h2 loop="$main_menu->list=>$key1,$val1" cond="$val1['selected']"><a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a></h2>
<ul class="locNav" loop="$main_menu->list=>$key1,$val1" cond="$val1['selected'] && $val1['list']">
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a>
<ul cond="$val2['list']">
<li loop="$val2['list']=>$key3,$val3" class="active"|cond="$val3['selected']"><a href="{$val3['href']}" target="_blank"|cond="$val3['open_window']=='Y'">{$val3['link']}</a></li>
</ul>
</li>
</ul>
</div>
<div class="content xe_content">
{$content}
</div>
</div>
<div class="footer">
<p><a href="http://xpressengine.com/" target="_blank">Powered by <strong>XE</strong></a></p>
</div>
</div>
댓글 1
-
킴똥똥
2013.09.04 11:44
-
수일이니
2013.09.04 14:03
css 파일중 default.css 수정을 하면 수정되는걸 알았습니다. 킴똥똥님 한가지만 더 물어볼께요. black.css , white.css 두가지 height 부분을 수정하더라도 아무런 변화가 없는게 정상인지요? black,white두가지 수정해 봤지만 전 아무런 변경되는게 없었어요. -
킴똥똥
2013.09.04 14:45
@수일이니 그건 왜 그러냐면 레이아웃 색상을 고르실적에 검정색이나 흰색을 선택하지 않는 경우에는 그냥 default.css에서 값으 가져오게 설정되어 있습니다. 그래서 특별히 레이아웃 색상을 고르지 않으셨다면 그게 정상입니다.
layout,html을 건드리시는게 아니고 css를 손보셔야 합니다.
layout폴더내의 해당 레이아웃의 css폴더안을 살펴보시면, css파일이 세개가 있습니다.
선택하신 컬러셋에 맞는 css파일을 여시어 다음의 부분을 수정합니다.
height:120px부분을 수정하시면 되겠습니다.