То есть кратко вопрос можно сформулировать так: кто-нибудь знает как поставить "Ссылку1" и "Ссылку2" в ряд и что-бы остальные ссылки выпадали под них?
Вот коды файлов меню
Файл menu.js
CODE:
// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
Файл menu.html
CODE:
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<script type="text/javascript" src="menu.js"></script>
<style type="text/css">
/* Начинается меню*/
ul {
margin: 0;
padding: 0;
list-style: none;
width: 170px; /* Width of Menu Items */
border-bottom: 1px solid #030165;
}
ul li {
position: relative;
text-align : left;
}
li ul {
position: absolute;
left: 169px;
/* Set 1px less than menu width */
top: 2;
display: none;
text-align : left;
}
ul li a {
display: block;
text-decoration: none;
color: #333333;
background: #CCCCCC; /* IE6 Bug */
padding: 4px;
border: 1px solid #000000;
border-bottom: 0;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul li a:hover {
color: #FFFFFF;
background: #CCCCCC;
POSITION: relative;
TOP: 0px;
LEFT: 0px;
} /* Hover Styles */
li ul li a menu { padding: 2px 5px; } /* Sub Menu Styles */
li:hover ul, li.over ul { display: block; } /* The magic */
/* Заканчивается меню*/
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<ul id="nav">
<li><a href="#" >Ссылка1</a>
<ul>
<li><a href="#" >Ссылка11</a></li>
<li><a href="#" >Ссылка12</a></li>
<li><a href="#" >Ссылка12</a></li>
</ul>
</li>
<li><a href="#" >Ссылка2</a>
<ul>
<li><a href="#" >Ссылка21</a></li>
<li><a href="#" >Ссылка22</a></li>
<li><a href="#" >Ссылка23</a></li>
</ul>
</li>
</ul>
</body>
</html>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<script type="text/javascript" src="menu.js"></script>
<style type="text/css">
/* Начинается меню*/
ul {
margin: 0;
padding: 0;
list-style: none;
width: 170px; /* Width of Menu Items */
border-bottom: 1px solid #030165;
}
ul li {
position: relative;
text-align : left;
}
li ul {
position: absolute;
left: 169px;
/* Set 1px less than menu width */
top: 2;
display: none;
text-align : left;
}
ul li a {
display: block;
text-decoration: none;
color: #333333;
background: #CCCCCC; /* IE6 Bug */
padding: 4px;
border: 1px solid #000000;
border-bottom: 0;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul li a:hover {
color: #FFFFFF;
background: #CCCCCC;
POSITION: relative;
TOP: 0px;
LEFT: 0px;
} /* Hover Styles */
li ul li a menu { padding: 2px 5px; } /* Sub Menu Styles */
li:hover ul, li.over ul { display: block; } /* The magic */
/* Заканчивается меню*/
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<ul id="nav">
<li><a href="#" >Ссылка1</a>
<ul>
<li><a href="#" >Ссылка11</a></li>
<li><a href="#" >Ссылка12</a></li>
<li><a href="#" >Ссылка12</a></li>
</ul>
</li>
<li><a href="#" >Ссылка2</a>
<ul>
<li><a href="#" >Ссылка21</a></li>
<li><a href="#" >Ссылка22</a></li>
<li><a href="#" >Ссылка23</a></li>
</ul>
</li>
</ul>
</body>
</html>