なんだか、よくわかりませんが、いじっていたら出来ました。
チャレンジャーな方は、下記の青い部分を変更してみてください。

デザインスキンは「グリーン」「ピーチ」「グレー」「ブルー」が基本です。
ちなみに私は『ピーチ/2コラム-記事右」を選択しています。

(注)素人がやっていますので、よくわからないでやってます(T▽T)アハハ!
   基本は、背景の色は無し「透明」になるんだと思います。
   よくわかりませんが・・・・・・・・・・・・・(; ̄ー ̄A アセアセ・・・

/* ----------------------- background-color-control ----------------------- */

  この間を全て消去して、下記の青字を追加してください。

/* ----------------------- menu_element_basis ----------------------- */


ではでは、ご覧下さい♪


●背景を固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;}

/* ----------------------- menu_element_basis ----------------------- */


●背景を横1列に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-repeat: repeat-x;}

/* ----------------------- menu_element_basis ----------------------- */


●背景を縦1列に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-repeat: repeat-y;}

/* ----------------------- menu_element_basis ----------------------- */


●背景を右上に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-position:100% 0%;
background-repeat: no-repeat;}

/* ----------------------- menu_element_basis ----------------------- */


●背景を右下に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-position:100% 100%;
background-repeat: no-repeat;}

/* ----------------------- menu_element_basis ----------------------- */


●背景を左上に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-repeat: no-repeat;}
/* ----------------------- menu_element_basis ----------------------- */


●背景を左下に固定する●
/* ----------------------- background-color-control ----------------------- */
body {
background-image : url("画像のURL");
background-attachment: fixed;
background-position:0% 100%;
background-repeat: no-repeat;}
/* ----------------------- menu_element_basis ----------------------- */