IE8에서 2차메뉴 플로팅 드롭현상 해결
1. packages/droppy_menu_pxeImperial/droppy.css 파일을 열어 아래 코드를 찾습니다. 빨간 색 코드를 삭제하고 푸른 색 코드는 추가해 줍니다.
#nav ul a { color:#fff; display:block; width:146px; height:21px; padding-bottom:none; padding-top:9px; padding-left:12px; font:8pt 돋움; font-family:돋움,Dotum; font-size:8pt; line-height:100%; letter-spacing:-1px; text-align:left; background:none !important; }
빵 조각 경로 표시기 추가 패치
1. layout.html 파일을 열고 아래의 코드를 찾아 빨간 색 코드를 삭제합니다.
<div class="menuPath">
<div class="left">
<!-- depth 1 -->
<!--@foreach($main_menu->list as $key => $val)-->
<!--@if($val['selected'])-->{@$depth1 = $val}<!--@end-->
<!--@end-->
<!-- depth 2 -->
<!--@if($depth1)-->
<!--@foreach($depth1['list'] as $key => $val)-->
<!--@if($val['selected'])-->{@$depth2 = $val}<!--@end-->
<!--@end-->
<!--@end-->
<!-- depth 3 -->
<!--@if($depth2)-->
<!--@foreach($depth2['list'] as $key => $val)-->
<!--@if($val['selected'])-->{@$depth3 = $val}<!--@end-->
<!--@end-->
<!--@end-->
<a href="{getSiteUrl()}">Home</a>
<!--@if($menu_depth1)-->
<a href="{$depth1['href']}">{$depth1['text']}</a>
<!--@end-->
<!--@if($menu_depth2)-->
<a href="{$depth2['href']}">{$depth2['text']}</a>
<!--@end-->
<!--@if($menu_depth3)-->
<a href="{$depth3['href']}">{$depth3['text']}</a>
<!--@end-->
<span class="nowLocation">
<!--@if($module_info->title)-->
{$module_info->title}
<!--@else-->
{Context::getBrowserTitle()}
<!--@end-->
</span>
</div>
<div class="terminator"></div>
</div><!--menuPath 끝-->