Hi Dave,
Well, I got it. I don't do much work with css myself so it's a hit or miss as I test.
You need to add this to your css file
Code: Select all
TABLE.main1 TD {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px
}
Then on that new test page with the 'simplified' test, you need to code that table you have at the top, not the main one, but the one in which you call the menu, you need to code that table and the td with the menu in it with class=main1
Code: Select all
<TABLE class=main>
<TBODY>
<TR>
<TD
style="BORDER-RIGHT: red 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: red 1px solid; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; BORDER-LEFT: red 1px solid; PADDING-TOP: 0px; BORDER-BOTTOM: red 1px solid">
<TABLE class=main1
style="BORDER-RIGHT: green 1px solid; BORDER-TOP: green 1px solid; BORDER-LEFT: green 1px solid; BORDER-BOTTOM: green 1px solid">
<TBODY>
<TR>
<TD class=main1><!-- Milonic DHTML Website Navigation Menu Version 5.0 Please visit http://milonic.com/ for more information. -->
<SCRIPT language=JavaScript src="milonic_src.js"
type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="mmenudom.js"
type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript
src="MainMenu_data.js"
type=text/javascript></SCRIPT>
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
I think the reason for the problem is that coding table.main td forces whatever that code for the td to be always dominant, so in order to override it you need to set up another one the same way only as table.main1 td{whatever code} Now when you set the class in the table that has the menu, then all the tables in the menu will also take that td coding.
Now, you will have a blue border around each item because you have rawcss set in the menu_data file with that blue border. Any time you set a border using css it applies not to the menu container but to each item. THe only way to set a menu around the actual container is to use the menu's own border code. css border is equivalent to the menu's offborder and onborder code.
Hope this helps [and made sense

]
Ruth