모모님 전체배경색상을 바꾸실려면 layout.html.을 열어서 빨간색부분을 원하는 색상으로 바꾸어 주시면 됩니다.
<!-- 배경 설정 --> <style> <!--@if(!$layout_info->bg_img)--> body { background:url(./images/bg.png) center top repeat-x #555555 } <!--@else--> body { background:url({$layout_info->bg_img}) center top repeat-x {$layout_info->bg_color} } <!--@end--> </style> <!-- /배경 설정 -->
<!-- 배경 설정 -->
<style>
<!--@if(!$layout_info->bg_img)-->
body { background:url(./images/bg.png) center top repeat-x #555555 }
<!--@else-->
body { background:url({$layout_info->bg_img}) center top repeat-x {$layout_info->bg_color} }
<!--@end-->
</style>
<!-- /배경 설정 -->