Hi,
I cannot figure out what the problem is for number 1. Nothing I have tried has worked. I will report the issue and hopefully it will be fixed.
As to the submenu position for the last Forum item, make the following changes and that seems to fix it so it is aligned right normally, but NOT when you have the openstyle='rtl'. I noticed that that submenu, as you hve it now is shifted farther to the right than the edge of the menu so that's why I did the fix for that issue. As noted it doesn't solve the openstyle='rtl' in the submenu issue.
1. In the css, add margin:10px to the body tag section, this evens the margins for all the browsers so they have the same margins. Right now without that in there, they are not the same. Then add this class and then call it in the table that has the menu. It has the margin-right:auto removed and that seems to be part of the problem on the placement of the submenu.
Code: Select all
.maintablemenu{
MARGIN-LEFT: 0px; WIDTH: 66.9em;
}
Now, in that menu table, you will call the class maintablemenu and in the td that has the call for the embedded main menu you'll have a style= with some code added.
Code: Select all
<TABLE class=maintablemenu border=0>
<TBODY>
<TR class=menu>
<TD class=menuleft></TD>
<TD style='padding:0px;height:38px'>
<SCRIPT src="embedded_main_menu.js"
type=text/javascript></SCRIPT>
In the mainmenuStyle that is in the menu_data.js file remove the padding=8; That is causing problems in IE making the height somewhere around 54 instead of 38. With the height of the td set to 38 and your valign in the menu itself set to middle, that takes care of the height issues. Then in the embedded_main_menu.js file make the following changes to the main menu
Code: Select all
with(milonic=new menuname("Main Menu")){alwaysvisible=1;
openstyle="rtl";
orientation="horizontal";
position="relative";
style=mainmenuStyle;
menuwidth='100%';
menuheight=38;
itemheight=38;
menualign='right';
So, that fixes Forum item placement of the submenu in IE6, and FF2. I don't have IE7. And, I'll report the other issue.
As to the scrollbar issue, I dont' see it at all in IE6, or in my FF2 so I don't have anything to try and fix. Sorry.
Ruth