Forum Moderators: not2easy
<h4> elements or whatever you prefer, you may just need to change the hover code to maintain the hover on the droplist div .section to:
<div class="section">
<h4>Subheading</h4>
<a class="item2" href="amazon.html">Amazon</a>
<a class="item2" href="china.html">China</a>
<a class="item2" href="equador.html">Equador</a>
<a class="item2" href="georgial">Georgia</a>
<h4>Subheading</h4>
<a class="item2" href="indonesia1.html">Indonesia</a>
<a class="item2" href="indonesia2.html">Indonesia</a>
</div> .menu {
position:relative;
}
.dm1 {
height:20px;
background:transparent;
padding:0;
text-align:center;
}
.dm1 td {vertical-align: top;}
/*right side has no padding*/
.dm1 .item1,
.dm1 .item1:hover,
.dm1 .item1:visited,
.dm1 .item1-active,
.dm1 .item1-active:hover {
padding: 0 0 5px 15px;
text-decoration: none;
display: block;
font-weight:bold;
font-size: 13px;
position: relative;
font-family: Arial, sans-serif; }
.dm1 .item1,
.dm1 .item1:visited {
background:transparent;
color: #ccff66;}
.dm1 .item1:hover,
.dm1 .item1-active,
.dm1 .item1-active:hover {
background: transparent;
color: #99ff33;
margin:0;
}
.dm1 .item2,
.dm1 .item2:hover {
padding: 3px 8px 4px 8px;
text-decoration: none;
display: block;
white-space: nowrap;
text-align:left;
font-weight:bold;
font-size:12px;
font-family: palatino, 'Palatino Linotype', 'URW Palladio L', serif; }
.dm1 .item2,
.dm1 .item2:visited {
background: #99cc66;
color: #666666; }
.dm1 .item2:hover {
background: #99cc66;
color:#7F7E69;}
.dm1 .section {
width: 100%;
white-space: nowrap;
display: none;
}
.dm1 .item1:hover + .section,
.dm1 .section:hover {display: block;} .section:hover keeps the drop list active even if a subheading is hovered on.. is that what you're after?