-
2009/04/08 1:29 오전 #3612
배경이미지는 CSS수정만으로는 해결되지 않습니다.
포토ㅤㅅㅑㅍ등의 이미지 편집 프로그램을 사용해서 CSS에서 너비를 넓힌 만큼 수정해 주어야 합니다.
‘themes/default/images’ 폴더 안의 그림파일들을 살펴보세요.배경색의 경우 어느 부분의 배경색이냐에 따라 다르지만, 전체(body)의 경우 default(kubric)테마에서 ‘images/kubrickbgcolor.jpg’ 라는 이미지를 배경으로 사용하고 있으므로, 해당 이미지의 색을 바꿔주고, 배경색 또한 같은 색으로 설정해 주시면 됩니다.
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #d5d6d7 url('images/kubrickbgcolor.jpg');
color: #333;
text-align: center;
}에서 ‘background’ 부분입니다.
2009/04/08 1:29 오전 #3614배경이미지는 CSS수정만으로는 해결되지 않습니다.
포토ㅤㅅㅑㅍ등의 이미지 편집 프로그램을 사용해서 CSS에서 너비를 넓힌 만큼 수정해 주어야 합니다.
‘themes/default/images’ 폴더 안의 그림파일들을 살펴보세요.배경색의 경우 어느 부분의 배경색이냐에 따라 다르지만, 전체(body)의 경우 default(kubric)테마에서 ‘images/kubrickbgcolor.jpg’ 라는 이미지를 배경으로 사용하고 있으므로, 해당 이미지의 색을 바꿔주고, 배경색 또한 같은 색으로 설정해 주시면 됩니다.
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #d5d6d7 url('images/kubrickbgcolor.jpg');
color: #333;
text-align: center;
}에서 ‘background’ 부분입니다.
-
AuthorPosts
- 답변은 로그인 후 가능합니다.