Evet aynen öyle.
KeremEr
evet istediğim tam olarak bu. Bunu yapıyorum ama woodwall'ın aşağıda olmasını istiyorum. Deneme yanılma ile yaptığım kod bu ama woodwall hala üstte.
body{
background-image: url(../graps/woodwall.png), url(../graps/back.gif);
background-repeat: repeat-x, repeat;
background-position: center bottom, center center;
}
Hata nerede?
KeremEr
evet istediğim tam olarak bu. Bunu yapıyorum ama woodwall'ın aşağıda olmasını istiyorum. Deneme yanılma ile yaptığım kod bu ama woodwall hala üstte.
body{
background-image: url(../graps/woodwall.png), url(../graps/back.gif);
background-repeat: repeat-x, repeat;
background-position: center bottom, center center;
}
Hata nerede?
background-position içerisinde değerler x%, y% olarak verilmeli önce y eksenini yazamazsın.
böyle dene
body{
background-image: url(../graps/woodwall.png), url(../graps/back.gif);
background-repeat: repeat-x, repeat;
background-position: bottom center, center center;
}