Lockups in divTemplate not working

I have a simple situation that isn’t working. It’s a , with a in the center and a on the bottom. Only the button is selectable and I can’t figure out why. The lockup is visible, with the expected image and size, it’s just not selectable. The button on bottom is working fine.

Has anyone run into this? What do I need to change to make the lockup selectable?

<?xml version="1.0" encoding="UTF-8" ?> .lockUpStyle { tv-position: center; tv-align: center; } .bottomButton { tv-position: bottom; tv-align: center; }
<divTemplate>        
      <lockup class='lockUpStyle'>
          <img src="resource://splash.png" width="500" height="500" />
          <overlay>
              <title>  Not working  </title>
          </overlay>
      </lockup>

       <button class="bottomButton">
          <title>  Works  </title>
      </button>
</divTemplate>