Who can tell me how to make the boxes to be centered / indented ? I want to make two lines of three games
One way is to just add <br> after the third list item, to force the row wrap. Then add style="text-align: center" to the <ul> element holding them all, and they’ll move to the middle.
Not the most elegant solution as each list would need a custom <br> insert, but it will do the job
One way is to just add
<br>
after the third list item, to force the row wrap. Then addstyle="text-align: center"
to the<ul>
element holding them all, and they’ll move to the middle.Not the most elegant solution as each list would need a custom
<br>
insert, but it will do the jobThank you for your help