Hi
You need to edit this file ja_bistro/css/template.css
You have two areas where it is trying to place the background image.
so at about line 26
It currently looks like this
body#bd { background: url(../images/pozadina.jpg) repeat #EFD7B4; color: #666; }
You can change it to
body#bd {
background: url(../images/pozadina.jpg);
background-size: 100%;
background-repeat: no-repeat;
}
At about line 472 you can see this
#ja-wrapper {
background: url(../images/pozadina.jpg) no-repeat left -220px;
overflow: hidden;
}
You need to delete the image here. It is what was causing the problem.