X
Xarky
Hi,
I followed this link to design my drop-down menu:
http://msdn.microsoft.com/library/d...ta/html/OfficeFrontPageCreateDropDownMenu.asp
The css file being used is given below.
Now I have made another table (with text) on the same html page,
exactly under this menu. Now when I hover on the main menu items, the
menu item opens its sub items. When the new sub menu opens, the text
for the menu items and for the new table appear on each other and get
mixed up.
Also, when I try to hover on the menu items, as I reach the border of
the new table, menu disappears and so I can't click any options in the
menu.
One possible solution that I was trying was to set the new table
further down, in an area that it cannot be reached by the menu, but in
this way, its not very presentable.
I think problem can be fixed my arranging some properties in the CSS
file, but I can't find what property and the default value to set to
it.
I hope someone understands my problem and can help me out.
Thanks in Advance
/****** CSS FILE *****/
P
{
background-color: lightblue;
font-size: 15pt;
font-weight: bolder;
padding-top: 10px;
margin: 0px;
}
table.navbar {
font-size: 8pt;
margin: 0px;
padding: 0px;
border: 0px;
font-weight: bold;
}
table.menu {
font-size: 13pt;
margin: 0px;
padding: 0px;
font-weight: bold;
}
td.menuNormal {
padding: 0px;
color: Black;
font-weight: bold;
vertical-align: top;
background-color: White;
}
td.menuHover {
padding: 0px;
color: Black;
font-weight: bold;
vertical-align: top;
background-color: White;
position: absolute;
}
div.menuNormal {
display: none;
position: static;
}
div.menuHover {
border: 1px solid lightblue;
background-color: White;
display: inline;
position: absolute;
}
a.menuitem:link {
text-decoration: none;
color: Black;
background-color: White;
display: block;
}
a.menuitem:hover {
text-decoration: none;
color: Black;
background-color: lightblue;
display: block;
}
a.menuitem:active {
text-decoration: none;
color: Black;
background-color: lightblue;
display: block;
}
I followed this link to design my drop-down menu:
http://msdn.microsoft.com/library/d...ta/html/OfficeFrontPageCreateDropDownMenu.asp
The css file being used is given below.
Now I have made another table (with text) on the same html page,
exactly under this menu. Now when I hover on the main menu items, the
menu item opens its sub items. When the new sub menu opens, the text
for the menu items and for the new table appear on each other and get
mixed up.
Also, when I try to hover on the menu items, as I reach the border of
the new table, menu disappears and so I can't click any options in the
menu.
One possible solution that I was trying was to set the new table
further down, in an area that it cannot be reached by the menu, but in
this way, its not very presentable.
I think problem can be fixed my arranging some properties in the CSS
file, but I can't find what property and the default value to set to
it.
I hope someone understands my problem and can help me out.
Thanks in Advance
/****** CSS FILE *****/
P
{
background-color: lightblue;
font-size: 15pt;
font-weight: bolder;
padding-top: 10px;
margin: 0px;
}
table.navbar {
font-size: 8pt;
margin: 0px;
padding: 0px;
border: 0px;
font-weight: bold;
}
table.menu {
font-size: 13pt;
margin: 0px;
padding: 0px;
font-weight: bold;
}
td.menuNormal {
padding: 0px;
color: Black;
font-weight: bold;
vertical-align: top;
background-color: White;
}
td.menuHover {
padding: 0px;
color: Black;
font-weight: bold;
vertical-align: top;
background-color: White;
position: absolute;
}
div.menuNormal {
display: none;
position: static;
}
div.menuHover {
border: 1px solid lightblue;
background-color: White;
display: inline;
position: absolute;
}
a.menuitem:link {
text-decoration: none;
color: Black;
background-color: White;
display: block;
}
a.menuitem:hover {
text-decoration: none;
color: Black;
background-color: lightblue;
display: block;
}
a.menuitem:active {
text-decoration: none;
color: Black;
background-color: lightblue;
display: block;
}