Link Hover, Image Appears
neonpaladin
02 Oct 2017, 12:02Hi,
I'd like to make a chapter select menu at the beginning of my game where the player can hover over each chapter and have an image appear to the right of the screen (that relates to the chapter). How can I make an image appear with a link hover?
Thank you!!

K.V.
02 Oct 2017, 15:38EDIT:
Sorry, what I posted didn't work in Quest or on this page (although it sort of works in edit view on this page).
<style>
#link:hover{
background-image:url('https://secure.gravatar.com/avatar/?d=retro');
display:block;
background-repeat:no-repeat;
width:100%;
height:80px;
color:white;
}
#words:hover {display:none}
</style>
<a id="link" href="#"><span id="words">hover over me!</span></a>