Jump to content
Xtreme .Net Talk

Antediluvia

Members
  • Posts

    3
  • Joined

  • Last visited

Personal Information

  • .NET Preferred Language
    VB.NET and JScript

Antediluvia's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I'm developing a website in VB 2005 and the menu doesn't dropdown right in anything earlier than Internet Explorer 7. That is, hover over a menu item with a dropdown and the dropdown appears about 400 pixels to the right. Any help here? A draft of the site is at http://www.studentsatbethel.org/. Any help with this is appreciated.
  2. I'm using VB.NET express 2005 to write a web site. On a master page I have two menus at the top, one below the other, both populated by code. The one on top has several drop-downs, and due to formatting the drop-downs rendered behind the menu below, rather impractical. I fixed this problem by encapsulating each menu in its own Panel and setting the proper z-orders. This worked until recently, and I can't figure out how to get it to work now. Instead the drop-downs render roughly 400 pixels to the right of where they are supposed to. Any help would be appreciated. If you need any more code (sample rendered page, css, themes) just ask. Give me up to a couple days to respond. TIA. Edited snippet from master page: <form id="Form1" runat="server"> <div class="header" style="z-index: 100;"> <asp:Panel runat="server" Style="position: relative; left: 156px; top: 0px; z-index: 104;" ID="Panel1"> <asp:Menu ID="MainMenu" SkinID="MainMenu" runat="server" Height="26px" Orientation="Horizontal" Style="position: static" Width="592px"> </asp:Menu> </asp:Panel> <asp:Panel runat="server" CssClass="nav" Style="right: 36px; top: 48px; width: 556px; text-align: left; z-index: 101; position: absolute;" ID="DIV1"> <asp:Menu ID="MainMenu2" runat="Server" SkinID="MainMenu2" /> </asp:Panel> </div> <table width="904" border="0" cellpadding="4" align="center"> <tr> <td width="904" colspan="2" style="text-align: left"> <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> </td> </tr> </table> </form>
  3. A friend refenced this site a lot, so I eventually asked him for the link, and here I am.
×
×
  • Create New...