안녕하세요, White layout 잘 사용하고 있습니다.
White layout 적용한 창을 다시고침할 경우 검정색으로 깜빡였다가 페이지가 뜨는데요,
이 색깔을 흰색으로 바꾸려면 어떻게 해야 하는건지 문의드립니다.
감사합니다.
백그라운드 이미지를 로딩하기전에 지정되어있는 컬러을 먼저 로딩하기때문에 보이는 현상입니다.
layout.html 에서 24번째줄 백그라운드 설정부분의 지정된 컬러를 삭제하시면 됩니다.
원본:
body { background:url({$layout_info->background_image}) no-repeat center top fixed #000; }
수정:
body { background:url({$layout_info->background_image}) no-repeat center top fixed; }
모르는게 없으시네요^-^ 감사합니다~
레이아웃에 있는 profile 버튼 눌렀을 때 뜨는 layer 배경을 흰색으로 바꾸려면 어떻게 하면 좋을까요?
자꾸 여쭤보게 되네요. 아무래도 블랙 위주로 작업되어서 그런 것 같습니다.
프로필뷰의 배경색을 변경하시려면 다음과 같이 수정하시면 됩니다.
JB_plugins/Account/css/account.css 파일에서 다음의 프로필뷰 색을 변경하시면 됩니다.
/* 회원 프로필 창 */.account li.profile .memberProfile{ display:none; position:absolute; width:160px; top:26px; right:0; padding:10px; z-index:9; background:#444; border:1px solid #5d5d5d; background: -moz-linear-gradient(top, #444444 0%, #1b1b1b 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#1b1b1b)); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#1b1b1b',GradientType=0 ); }
참고로 배경색을 화이트로 바꾸시고 난 후에 글자색도 변경 해 주시면 됩니다.
.account li.profile .memberProfile .authorName{ margin:0 0 8px; font-size:11pt; font-weight:bold; white-space:nowrap; color:#aaa;}.account li.profile .memberProfile li a{ text-decoration:none; background:none; color:#bbb;}
백그라운드 이미지를 로딩하기전에 지정되어있는 컬러을 먼저 로딩하기때문에 보이는 현상입니다.
layout.html 에서 24번째줄 백그라운드 설정부분의 지정된 컬러를 삭제하시면 됩니다.
원본:
body { background:url({$layout_info->background_image}) no-repeat center top fixed #000; }
수정:
body { background:url({$layout_info->background_image}) no-repeat center top fixed; }
이 댓글을
모르는게 없으시네요^-^ 감사합니다~
이 댓글을
레이아웃에 있는 profile 버튼 눌렀을 때 뜨는 layer 배경을 흰색으로 바꾸려면 어떻게 하면 좋을까요?
자꾸 여쭤보게 되네요. 아무래도 블랙 위주로 작업되어서 그런 것 같습니다.
이 댓글을
프로필뷰의 배경색을 변경하시려면 다음과 같이 수정하시면 됩니다.
JB_plugins/Account/css/account.css 파일에서 다음의 프로필뷰 색을 변경하시면 됩니다.
/* 회원 프로필 창 */
.account li.profile .memberProfile{ display:none; position:absolute; width:160px; top:26px; right:0; padding:10px; z-index:9;
background:#444; border:1px solid #5d5d5d;
background: -moz-linear-gradient(top, #444444 0%, #1b1b1b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#1b1b1b));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#1b1b1b',GradientType=0 );
}
참고로 배경색을 화이트로 바꾸시고 난 후에 글자색도 변경 해 주시면 됩니다.
.account li.profile .memberProfile .authorName{ margin:0 0 8px; font-size:11pt; font-weight:bold; white-space:nowrap; color:#aaa;}
.account li.profile .memberProfile li a{ text-decoration:none; background:none;
color:#bbb;}
이 댓글을