Hello,
So I am following the Create_a_game_in_BGA_Studio:_Complete_Walkthrough
I am trying to get some moral satisfaction by just adding the game board to the screen.
To the tpl file I added
<div id="board" class="board">
</div>
to the css file I added
.board {
background-image: url('img/board.png');
width: 942px;
height: 2400px;
background-size: 942px 2400px;
float: left;
position: relative;
background-repeat: no-repeat;
background-position: center top;
}
Then I uploaded the board.png file to the img directory as well.
Not sure what I am missing. no errors, just no picture showing.
So I am following the Create_a_game_in_BGA_Studio:_Complete_Walkthrough
I am trying to get some moral satisfaction by just adding the game board to the screen.
To the tpl file I added
<div id="board" class="board">
</div>
to the css file I added
.board {
background-image: url('img/board.png');
width: 942px;
height: 2400px;
background-size: 942px 2400px;
float: left;
position: relative;
background-repeat: no-repeat;
background-position: center top;
}
Then I uploaded the board.png file to the img directory as well.
Not sure what I am missing. no errors, just no picture showing.