묻고답하기
스케치북 레이아웃에서 배경 이미지를 오른쪽 아래에 고정시키고 싶습니다.
2014.07.26 17:41
정말 초보적인 질문 같은데 도저히 해결방법을 찾을 수가 없어서 이렇게 질문 드립니다ㅠㅠ
제목처럼 스케치북 레이아웃에서 배경 이미지를 오른쪽 아래로 고정시키고 싶은데, 레이아웃 설정상에서는 아래 설정이 없고 오른쪽 밖에 안되더라구요.
그래서 이래저래 검색을 돌려보고 html/css설정에 가서 html을 찾아봤는데,
<style type="text/css">
body,input,textarea,select,button,table{font-family:<!--@if($layout_info->font=='ng')-->'나눔고딕',NanumGothic,ng,<!--@elseif($layout_info->font=='window_font')-->'Segoe UI',Meiryo,'맑은 고딕','Malgun Gothic',<!--@elseif($layout_info->font=='tahoma')-->Tahoma,'돋움',Dotum,<!--@end-->'Segoe UI',Meiryo,'Trebuchet MS','나눔고딕',NanumGothic,ng,'맑은 고딕','Malgun Gothic','돋움',Dotum,AppleGothic,sans-serif}
<block cond="$layout_info->bg">
body{background-image:url({$layout_info->bg});background-position:top {$layout_info->bg_align};background-repeat:{$layout_info->bg_repeat};}
</block>
여기서 url(이미지 주소) 넣고 background-position:bottom right , background-repeat:no-repeat
로 하면 될 것 같아서 해봤는데....안되더라구요ㅠㅠㅠㅠㅠㅠ
혹시 방법을 아신다면 알려주시면 감사하겠습니다ㅠㅠ
댓글 2
-
sejin7940
2014.07.26 19:42
-
히즈827
2014.07.26 21:49
말씀하신대로 해봤는데 적용이 반만되네요. 스크롤이 생기면 하단 고정이 되는데 스크롤이 없는 페이지는 그대로 중간에 보이는 문제가...일단 좀 더 살펴보겠습니다. 감사합니다ㅠㅠ
body{background-image:url({$layout_info->bg});background-position:top {$layout_info->bg_align};
를 아래걸로 바꿔보세요
body{background-image:url({$layout_info->bg});background-position:bottom {$layout_info->bg_align};