Advertisement

09.14.2008 at 06:09PM PDT, ID: 23730722
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Menu appearing behind image

Asked by lkingpinl in Web Graphics Software, Images and Photos, Scripting Languages

Tags: ,

I am working on my website and have incorporated a dynamic horizontal menu at the top and one of the menu has sub-menu's.  Just below this menu is an image.  Problem is the submenu appears behind the image.  I am using layers and setting the z-index does not seem to work.  My code is attached.  Here is a link to my test site:  http://www.ngtechnologies.com/FTP/Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
CSS file:
 
#logo {
	position: absolute;
	visibility: visible;
	height: 56px;
	width: 177px;
	left: 0px;
	top: 0px;
	background-image: url(Logos/ng3.jpg);
}
#QuickNav {
	position: absolute;
	visibility: visible;
	height: 17px;
	width: 190px;
	left: 610px;
	top: 39px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: right;
	vertical-align: text-bottom;
	background-color: #FFFFFF;
}
#Nav {
	position: absolute;
	visibility: visible;
	height: 32px;
	width: 800px;
	left: 0px;
	top: 57px;
	z-index: 1;
}
.link {
	font-family: Arial, Helvetica, sans-serif;
	color: #0033CC;
	text-decoration: none;
}
#Main {
	position: absolute;
	visibility: visible;
	line-height: 100%;
	width: 600px;
	left: 0px;
	top: 291px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	background-color: #FFFFFF;
	z-index: 2;
}
#Side {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	position: absolute;
	width: 200px;
	left: 600px;
	top: 291px;
	visibility: visible;
	line-height: 100%;
}
#Wrapper {
	margin: 0 auto 0;
	width: 800px;
	position:relative;
}	
.link:hover {
	font-weight: bold;
	text-decoration: underline;
}
.link:visited {
	color: #9966CC;
}
.side {
	background-color: #00CCFF;
}
body { 
font-size : 12px;
line-height : 17px;
font-family : trebuchet ms, Verdana, Arial, sans-serif;
text-align : left;
margin : 2px auto;
padding : 0;                                                                                
background-color: #fff;
background-image: url(Images/bgtile.jpg);                                                                                
background-repeat : repeat;
} 
#images {
	position: absolute;
	visibility: visible;
	z-index: 999;
	height: 175px;
	width: 800px;
	left: 0px;
	top: 91px;
	background-image: url(Images/network.jpg);
}
#blue {
	position: absolute;
	visibility: visible;
	height: 25px;
	width: 600px;
	left: 0px;
	top: 266px;
	background-color: #0033ff;
}
#gray {
	background-color: #CCCCCC;
	position: absolute;
	visibility: visible;
	height: 25px;
	width: 200px;
	left: 600px;
	top: 266px;
	font-family: Calibri;
	font-size: 16px;
	font-weight: bold;
	color: #0033FF;
	text-align: center;
	vertical-align: bottom;
}
 
 
HTML file:
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><!-- InstanceBegin template="/Templates/Default.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- InstanceBeginEditable name="doctitle" -->
<title>NextGen Technologies</title>
<!-- InstanceEndEditable --><script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style1 {font-size: 14px}
-->
</style>
<!-- InstanceEndEditable -->
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
 
<body>
<div id="Wrapper">
<div id="logo"></div>
<div id="QuickNav"><span class="link"><a href="index.html" class="link">Homepage</a>&nbsp;</span> |  &nbsp;<a href="contact.html" class="link">Contact Us</a>&nbsp; | &nbsp; <a href="about.html" class="link"> About Us</a>&nbsp;&nbsp;</div>
<div id="Nav">
  <!-- Start dwuser_maximenu -->
  <!-- Do not remove the line below!!!  It is required for the DWUser MaxiMenu. -->
  <script type="text/javascript" src="maximenu_files/maximenu.js"></script>
  <div class="dwuser_maximenu_outer_holder" style="position: relative; width: 800px; height: 32px; z-index:9797;">
    <div class="dwuser_maximenu_content_holder" style="position: absolute; overflow: hidden; width: 800px; height: 32px;">
      <ul>
        <li><a href="about.html">About Us</a></li>
        <li><a href="services.html">Services</a>
            <ul>
              <li><a href="services.html#ondemand">OnDemand Support</a></li>
              <li><a href="services.html#consult">IT Consulting</a></li>
              <li><a href="services.html#email">Email Solutions</a></li>
              <li><a href="services.html#web">Web Solutions</a></li>
            </ul>
        </li>
        <li><a href="voip.html">IP Telephony</a></li>
        <li><a href="partners.html">Partners</a></li>
        <li><a href="contact.html">Contact Us</a></li>
      </ul>
    </div>
  </div>
  <script type="text/javascript">
        // <![CDATA[
		if (!MaxiMenu) { MaxiMenu = function(){}; alert('To use the MaxiMenu, you must upload the maximenu_files/maximenu.js file, and have a properly defined reference to it in your HTML.');};
        MaxiMenu({redirect:'http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash',expanded_width:'800',expanded_height:'500',styles:'<styles>  <Level1Button menuImage="vista_level1bg" layoutDirection="horizontal" menuWidth="800" menuHeight="32" useArrow="true" cornerRadius="0" drawExtraBackground="true" borderWidth="-1" underline="false" backgroundColor="#E6E6E9" backgroundAlpha="0" bevelStrength="0" hPadding="15" hPaddingRight="25" vPadding="5" textColor="#FFFFFF" embedFonts="false" font="Trebuchet MS, Arial" size="12" bold="false" childPosition="bottom" menuEffect="fade" menuShadow="false" menuBackgroundColor="#0033FF" menuBackgroundAlpha="1" menuCornerRadius="0" menuBorderColor="" menuBorderWidth="-1" borderColor="#999999" menuShadowSize="4" imageOn="vista_level1btnhover" imageScaleGridOn="8,8,8,8" menuImageScaleGrid="0,0,0,0" menuImagePositionGrid="0,0,0,0" imagePositionGridOn="0,-5,0,0"/>  <Level1ButtonOn effectSpeed="10" backgroundColor="#0099FF" backgroundAlpha="0" textColor="#FFFFFF" underline="false"/>  <Level2Button menuShadow="false" childPosition="right" menuBackgroundAlpha="1" image="vista_level2btnbg" menuEffect="fade" layoutDirection="vertical" menuCornerRadius="0" useArrow="true" underline="false" backgroundColor="#E6E6E9" backgroundAlpha="0" borderWidth="-1" borderColor="#999999" bevelStrength="0" hPadding="10" hPaddingRight="35" vPadding="2" textColor="#FFFFFF" embedFonts="false" font="Verdana" size="10" bold="false" menuBorderWidth="-1" menuShadowSize="5" menuBorderColor="#999999" menuImage="vista_level2bg" cornerRadius="0" menuImageScaleGrid="0,5,5,5" menuImagePositionGrid="0,0,-2,0" imageOn="vista_level2btnhover" menuEffectSpeed="250" imageScaleGrid="5,1,5,1" drawExtraBackground="false" imageScaleGridOn="5,1,5,1" imagePositionGrid="0,2,0,2" imagePositionGridOn="0,2,0,2"/>  <Level2Spacer useArrow="true" underline="false" backgroundColor="#CCCCCC" backgroundAlpha="0" borderWidth="-1" borderColor="#999999" bevelStrength="0" hPadding="10" hPaddingRight="30" vPadding="3" textColor="#666666" embedFonts="false" font="Arial" size="11" italic="false" bold="true"/>  <Level2ButtonOn effectSpeed="350" underline="false" backgroundAlpha="0.17" backgroundColor="#000000" textColor="#FFFFFF" bold="false" italic="false"/>  <SubMenuArrow lineWidth="2" lineColor="#666666" size="6" image="vista_downarrow"/>  <SearchBox boxWidth="75" boxHeight="19" textColor="#333333"/>  <Level1Spacer bold="true" font="Verdana" size="11" hPadding="7" textColor="#000000"/></styles>',normal_width:'800',holder_id:'dwuser_maximenu_0',skin_url:'../maximenu_files/VistaStyle.swf',normal_height:'32',swf:'../maximenu_files/maximenu.swf'});
		// ]]>
        </script>
  <noscript>
  <style type="text/css">
  .dwuser_maximenu_content_holder { overflow: scroll !important; }
  </style>
  <a href="http://www.dwuser.com/" title="Flash Menus, Drop down menus, popup menus and Dreamweaver Extensions">Powered by DWUser.com - Flash Menus, Drop down menus, popup menus and Dreamweaver Extensions</a>
  </noscript>
  <!-- End dwuser_maximenu -->
</div>
 
<div id="images"><!-- InstanceBeginEditable name="Images" --><!-- InstanceEndEditable --></div>
 
<div id="blue"></div>
 
<div id="gray">Customer Focused Support</div>
 
<div id="Main"><!-- InstanceBeginEditable name="Main" --><br>
 <strong class="style1"><a name="ondemand"></a>On-Demand Support</strong><br>
<p>Sometimes a full IT management solution is overkill, especially for smaller organizations and non-profits that do not rely on technology as heavily or do not have the infrastructure to require a fully managed solution. For those situations, NextGen Technologies offers On-Demand Support.
On-Demand Support offers the same expertise, knowledge and service as our Managed Services but without all the bells and whistles. You get exceptional service and support- only when you need it.</p> 
 
<br>
<strong class="style1"><a name="consult"></a>IT Consulting</strong><br>
<p>Does your organization have an ongoing, long-term IT function or support activity with fluctuating resource demands? Or perhaps your organization has an intensive, short-term project needing supplemental IT staff to work on-site? 
IT needs are often unpredictable so it's important to have a knowledgeable resource to turn to when demand increases. By interfacing directly with your employees we can help minimize your IT costs while maintaining a consistent level of service throughout the organization. Whether by project, month or week we can provide the technical expertise and exceptional service required for your IT project.</p>
      <br>
      <span class="style1"><strong><a name="email"></a>Email Solutions</strong><br>
      </span>
   <p><b>Stop email and Web threats easily, effectively<br></b>
    NextGen Technologies can help protect your business against a wide range of email and Web threats spam, viruses, spyware and fraudulent phishing attacks  while helping to keep email flowing during outages, with fully-managed online security solutions powered by MX Logic. </p>
    <ul type="disc">
      <li type="disc">Convenient month-to-month contract terms </li>
      <li type="disc">No hardware or software to integrate</li>
      <li type="disc">Rapid service activation</li>
      <li type="disc">Easy administration through an intuitive Web-based administrative portal</li>
      <li type="disc">Flexibility and scalability so the services can grow with your needs</li>
    </ul>
    <p><strong>Email Defense Service<br> </strong>    
    This award-winning service provides comprehensive, layered protection against email-borne threats. With more than 20 layers of filters, the Email Defense Service blocks over 99% of spam, and provides effective zero-hour protection against viruses and worms. Available in four packages to meet the needs of your business, the service can include one of two email disaster recovery solutions, MX LogicSM Message Continuity or the MX Logic® Fail Safe Service.</p> 
    <ul type="disc">
      <li type="disc">Advanced Spam Blocking</li> 
        <li type="disc">Virus and Worm Scanning</li> 
        <li type="disc">Content and Attachment Filtering</li> 
        <li type="disc">Fraud Protection</li> 
        <li type="disc">Email Attack Protection</li> 
        <li type="disc">Outbound Message Filtering</li> 
        <li type="disc">Sophisticated Quarantine Management</li> 
        <li type="disc">Around-the-clock Monitoring and protection</li> 
        <li type="disc">MX LogicSM Message Continuity</li> 
        <li type="disc">MX Logic® Fail Safe Service</li>
    </ul>
    <a href="contact.html">Contact us</a> for more information.<br><br>
    
<br>
    <strong class="style1"><a name="web"></a>Web/Application Development</strong><br><br>
    Web design, application development and online marketing services are provided by our talented staff. We specialize in web technologies designed for small and medium sized businesses utilizing a variety of web technologies. If you are ready to take your web project ot the next level contact us today. 
 
<!-- InstanceEndEditable --></div>
 
<div id="Side" class="side"><!-- InstanceBeginEditable name="Side" -->Side<!-- InstanceEndEditable --></div>
</div>
</body>
<!-- InstanceEnd --></html>
[+][-]09.14.2008 at 08:01PM PDT, ID: 22475733

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Web Graphics Software, Images and Photos, Scripting Languages
Tags: menus, images
Sign Up Now!
Solution Provided By: andrewbleakley
Participating Experts: 1
Solution Grade: B
 
 
[+][-]09.14.2008 at 08:04PM PDT, ID: 22475745

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-43 / EE_QW_EXPERT_20070906