I didn't mean to use that inline. Your page has two style sections, the second one looks like so:
Code:
<style type="text/css">
#dropmenudiv{
position:absolute;
border:1px solid black;
border-bottom-width: 0;
font:normal 13px Times New Roman;
line-height:17px;
z-index:100;
}
#dropmenudiv a, span{
color: black;
width: 159;
display: block;
text-indent: 2px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: none;
}
#dropmenudiv a:hover{ /*hover background color*/
background-color: #3399FF;
color: white;
}
</style>
To be more clear about what I was suggesting, find the above section of your code and make it look like so:
Code:
<style type="text/css">
#dropmenudiv{
position:absolute;
border:1px solid black;
border-bottom-width: 0;
font:normal 13px Times New Roman;
line-height:17px;
z-index:100;
}
#dropmenudiv a, span{
color: black;
width: 159;
display: block;
text-indent: 2px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: none;
}
#dropmenudiv a:hover{ /*hover background color*/
background-color: #3399FF;
color: white;
}
ul, ol {
margin-bottom:0;
}
</style>
As long as you have no other ul or ol elements on the page that this could cause a problem with, this will be the easiest way to get them all at one shot. I tried this out locally and it seemed fine. If you have to add the style inline, it must be done to each of the ul and ol elements individually, example using a ul:
HTML Code:
<ul style="margin-bottom:0;">
Do it one way or the other, in the style section or inline, do not do it in both places and do not do what you did to the table's inline style. That is non-standard and I am surprised that it worked at all.
Bookmarks