Hi
You can open the compiled css file:
ROOT/templates/ja_gamex/local/css/template.css
and look for the background image such as:
.t4-content:before {
background-image: url('../images/top-body.png');
background-size: cover;
....
.t4-content:after {
background-image: url('../images/bottom-body.png');
background-size: cover;
change the path to:
.t4-content:before {
background-image: url('../../images/top-body.png');
background-size: cover;
....
.t4-content:after {
background-image: url('../../images/bottom-body.png');
background-size: cover;