Thanks....
Stupid to forgot to close with </div>
Your help was just what I needed to get to a solution.
I fiddled around.... just a temporary solution...
Controls is to set a control bar. As this workaround..doesn't show the yendif controlbar
height is variable to the windows size used. It is used to move the audio controlbar to the bottom
...Now bring back the Yendif audio controlbar...
______________________________________________________________________________________________________________________
<div class="audio">
<div style="background-image: url(hxxp://xxxx.png);" >
<audio preload id="audio2" style="width:100%;height: 475px;" controls="controls"
src="hxxps://xxxx.mp3" >
<p>Your browser does not support the audio element</p>
</audio>
<script>
myAudio=document.getElementById('audio2');
myAudio.addEventListener('canplaythrough', function() {
this.currentTime = 43;
this.play();
});
</script>
</div>
</div>