Master pages and menus
-
Hi, Can anyone see the problem here? I have a very simple master page with a very simple content page. I just want a menu on the master page. There are several things that aren't working the way I would like them to. 1. The menu is horizontal and pushing the content place holder down when it's expanding down. I would like it to hover over the content page and not move it. 2. it's not displaying the items when hovering. It's just displaying a white box where the items are suppose to be. I have been looking at this for 2 days without any progress. Can someone help me? simple.master *********************** <%@ Master Language="C#" AutoEventWireup="true" Codebehind="simple.master.cs" Inherits="EPMS.Frameset.simple" %> Simple Master .toolbar { font-size: 13px; font-family: Verdana; padding: 6px; filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ffffff,endColorStr=lightblue); }
simplepage.aspx ******************************** <%@ Page Language="C#" MasterPageFile="~/Frameset/simple.Master" AutoEventWireup="true" Codebehind="simplepage.aspx.cs" Inherits="EPMS.EPMS_Request.simplepage" Title="Simple Page" %>
This is the simple page.
web.sitemap *******************************
-
Hi, Can anyone see the problem here? I have a very simple master page with a very simple content page. I just want a menu on the master page. There are several things that aren't working the way I would like them to. 1. The menu is horizontal and pushing the content place holder down when it's expanding down. I would like it to hover over the content page and not move it. 2. it's not displaying the items when hovering. It's just displaying a white box where the items are suppose to be. I have been looking at this for 2 days without any progress. Can someone help me? simple.master *********************** <%@ Master Language="C#" AutoEventWireup="true" Codebehind="simple.master.cs" Inherits="EPMS.Frameset.simple" %> Simple Master .toolbar { font-size: 13px; font-family: Verdana; padding: 6px; filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ffffff,endColorStr=lightblue); }
simplepage.aspx ******************************** <%@ Page Language="C#" MasterPageFile="~/Frameset/simple.Master" AutoEventWireup="true" Codebehind="simplepage.aspx.cs" Inherits="EPMS.EPMS_Request.simplepage" Title="Simple Page" %>
This is the simple page.
web.sitemap *******************************
The ASP.NET forum is more suitable for this kind of question.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
Hi, Can anyone see the problem here? I have a very simple master page with a very simple content page. I just want a menu on the master page. There are several things that aren't working the way I would like them to. 1. The menu is horizontal and pushing the content place holder down when it's expanding down. I would like it to hover over the content page and not move it. 2. it's not displaying the items when hovering. It's just displaying a white box where the items are suppose to be. I have been looking at this for 2 days without any progress. Can someone help me? simple.master *********************** <%@ Master Language="C#" AutoEventWireup="true" Codebehind="simple.master.cs" Inherits="EPMS.Frameset.simple" %> Simple Master .toolbar { font-size: 13px; font-family: Verdana; padding: 6px; filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ffffff,endColorStr=lightblue); }
simplepage.aspx ******************************** <%@ Page Language="C#" MasterPageFile="~/Frameset/simple.Master" AutoEventWireup="true" Codebehind="simplepage.aspx.cs" Inherits="EPMS.EPMS_Request.simplepage" Title="Simple Page" %>
This is the simple page.
web.sitemap *******************************
Found it. In the epms web.config, there is a line This was causing my problem. http://weblogs.asp.net/dannychen/archive/2005/12/16/433332.aspx (Sorry about posting in this forum. I was in the asp.net forum but when I clicked New Message, it created it in this forum.) Thanks, Jessica