-
Делаю выпадающее меню. Работает только в ИЕ. В Опере и ФФ нет.
window.su/index.php
Код такой:
Код:
#topmenue {
****font-family: "Arial Narrow";
****font-size: 14px;
****text-transform: uppercase;
****color: #E6E7E8;
****text-decoration: none;
****font-weight: normal;
****bottom: 0px;
****clip: rect(auto auto auto auto);
****position: relative;
****background-image: url(../images/btn-active.gif);
****background-repeat: no-repeat;
****background-position: 0px 0px;
****display: block;
****background-attachment: fixed;
****visibility: visible;
****top: 0px;
****height: 81px;
****width: 118px;
}
#topmenue:hover {
****font-family: "Arial Narrow";
****font-size: 14px;
****text-transform: uppercase;
****color: #FFFFFF;
****text-decoration: none;
****bottom: 0px;
****clip: * * * * *rect(auto auto auto auto);
****position: relative;
****background-image: url(../images/btn-hvr.gif);
****background-repeat: no-repeat;
****background-position: 0px 0px;
****display: block;
****background-attachment: fixed;
****visibility: visible;
****top: 0px;
****height: 81px;
****width: 118px;
****text-indent: 0pt;
****padding-top: 0px;
****padding-right: 0px;
****padding-bottom: 0px;
****padding-left: 0px;
****font-weight: normal;
}
Подскажите plz в чем проблема.
-
а где HTML? и меню пишется не menue, а menu
-
вот ссылка window.su/index.php
html код такой:
Код:
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
*<tr>
* *<td width="10" height="81" class="bg_central">[img]templates/window_1/images/bg-lft.gif[/img]</td>
* *<td valign="top" class="bg_central"> <table width="763" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
* * * *<tr>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="index.php" >
* * * * * * *главная</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/1/2/">
* * * * * * *о компании</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/2/3/">
* * * * * * *окна пвх</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/3/4/">
* * * * * * *продукция</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/4/5/">
* * * * * * *услуги</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/5/6/">
* * * * * * *заказать</a></div></td>
* * * * *<td width="118" height="81"><div align="center"><a id="topmenue" href="/content/view/13/14/">
* * * * * * *контакты</a></div></td>
* * * *</tr>
* * *</table>
-