eryani
Newbie
Posts: 1
Registered: 8/11/2007
Location: Yemen
Member Is Offline
|
| posted on 8/11/2007 at 12:54 AM |
|
|
Menu is hiding the table
Hi,
Ihave finally suceeded in running this menu on my site but I had a problem in displaying the menu correctly.
The menu is placing OVER other table and I could not make it push the other table down although I tried to put (display:block) in the table style.
Here is the menu table:
| Code: |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div style="position:relative; display:block">
<script language="JavaScript">
//alert(MENU_ITEMS);
new menu (MENU_ITEMS, MENU_TPL);
</script>
</div>
</td></tr></table>
|
After the menu table there is another table but the menu table is hiding it.
you can find a sample at: www.almethaq.info
Thanks in advanced.
Best regards,
Aws
|
|
|
tigra
Administrator
Posts: 1976
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 8/11/2007 at 03:27 PM |
|
|
Free and PRO versions of the menu are created in the layers above the document. They don't cause any offset of the document elements. Also make sure
the menu is initialized outside of any HTML elements of the page. Preferably it should be initialized above </body> tag.
|
|
|