묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
질문드립니다.~~
2015.07.17 14:18
이미지에 표시 한것처럼 겹처 보입니다. 어디에서 수정 해야 하나요?????????
layout폴더에서 layout.html파일 하단에 해결소스를 삽입하면 해결할수 있습니다.
<script>
jQuery(function ($) {
var keep_msg = $("#warning");
$(".chk_label").on("mouseenter mouseleave focusin focusout", function (e) {
if(e.type == "mouseenter" || e.type == "focusin") {
keep_msg.show();
}
else {
keep_msg.hide();
}
});
$("#ly_login_btn, #ly_btn").click(function () {
$(".login_widget").show();
return false;
});
$(".btn_ly_popup").click(function () {
$(".login_widget").hide();
return false;
});
$("input").blur(function () {
var $this = $(this);
if ($this.val()) {
$this.addClass("used");
}
else {
$this.removeClass("used");
}
});
/*해결 소스*/
$("input").each(function () {
var $this = $(this);
if ($this.val()) {
$this.addClass("used");
}
else {
$this.removeClass("used");
}
});
/*해결 소스*/
});
</script>
근데 좋은 방법은 아인것 같네요 ...