Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1015229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:22:10+00:00 2026-05-16T10:22:10+00:00

I hover over my menu and a submenu expands, then this bad boy comes

  • 0

alt text

I hover over my menu and a submenu expands, then this bad boy comes accross the screen. Is there something I can do in my website to prevent this?

IE6

aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/Templates/MyPage.master" AutoEventWireup="true"
    CodeFile="Tasks.aspx.cs" Inherits="UI_MyPage_Tasks" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <table>
        <tr valign="top">
            <td>
                <asp:Menu ID="menu1" runat="server" OnMenuItemClick="menu1_MenuItemClick" />
            </td>
            <td>
                <cc:CustomUserControl ID="cuc1" runat="server" />
            </td>
        </tr>
    </table>

aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using VAC.Data;

public partial class UI_Patient_Tasks : BasePage
{
    MyDB db = new MyDB();
    private MenuItem UserRole1MenuItem { get { return GetMenu(Common.Role.UserRole1); } }
    private MenuItem UserRole2MenuItem { get { return GetMenu(Common.Role.UserRole2); } }

    private MenuItem GetMenu(string roleName)
    {
        int roleID = (from r in db.Roles where r.RoleName == roleName select r.RoleID).First();
        MenuItem main = new MenuItem(roleName + " Menu");
        foreach (CustomObject co in (from c in db.CustomObjects where c.RoleID == roleID orderby c.SortOrder select c))
            main.ChildItems.Add(new MenuItem(co.Description, co.CustomObjectID.ToString()));
        return main;
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            menu1.Items.Clear();
            if (User.IsInRole(Common.Role.UserRole1))
                menu1.Items.Add(UserRole1MenuItem);
            if (User.IsInRole(Common.Role.UserRole2))
                menu1.Items.Add(UserRole2MenuItem);
        }
    }
    protected void menu1_MenuItemClick(object sender, MenuEventArgs e)
    {
        int id;
        if (int.TryParse(e.Item.Value, out id))
        {
            cuc1.CustomObjectID = id;
        }
    }
}

    </asp:Content>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:22:11+00:00Added an answer on May 16, 2026 at 10:22 am

    It looks like you’re serving your site over ssl (i.e. https://) but serving some of the content, almost certainly something in the menu – such as an image over http://, hence you’re receiving the “mixed mode” warning.

    Review the markup for your menu and look for any http:// URLs in the .aspx page (or possibly your codebehind if you build the menu dynamically) where there should be https:// or vice-versa.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small menu logo wiggle on my site when you hover over
I am trying to emulate the menu's in http://www.clydeproperty.com/ I want to hover over
I'm trying to make a simple navigation menu with jquery, where you hover over
I have an effect that when you hover over this one particular area, it
This is my Jquery for my tabbed menu: var current = $('li.selected'); $('li.selected #submenu').css(display,
I have got a submenu which expands from a nav menu type object when
When you hover over the top level links, the submenu appears as it should,
I'm trying to get a dropdown menu to open when I hover over the
Im building a menu dynamically and then a sub menu inside this dynamically also.
i am haveing issues with menu in IE7/8.. when i hover over the navigation..

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.