Hi Welcome to Sitepoint
I'm not sure what you want to trigger the hover action but here is an example that shows how it should work.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style type="text/css">
.logo>div,.logo> ul { display: none; }
.logo:hover>div,.logo:hover>ul { display: block; }
</style>
</head>
<body>
<div class="logo">
<p>Hover me</p>
<div><img src="images/logo.jpg" alt="logo" /></div>
<ul>
<li>item 1 </li>
<li>item 2</li>
</ul>
</div>
</body>
</html>
Bookmarks