I am trying to add a background image to each element on my page. The background images name is same as the id of the page (without the.png)
for example:
<div class="ClassOne" id='1'> /* i want this to have a bg of: background-image:url('1.png')*/
</div>
<div class="ClassOne" id='2'> /* i want this to have a bg of: background-image:url('2.png')*/
</div>
<div class="ClassOne" id='3'> /* i want this to have a bg of: background-image:url('3.png')*/
</div>