Advertisement

03.22.2008 at 02:59PM PDT, ID: 23261950
[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!

9.2

CSS issues in IE7, Fine with FF, Opera and Safari. Suggestions for this script please?

Asked by 93jordanaj in Cascading Style Sheets (CSS), Hypertext Markup Language (HTML), Web Browsers

Tags: , ,

The following script works with no problems (so far) in Firefox, Safari and Opera, but doesn't work properly in IE7. I don't know too much about CSS so any suggestions would be useful.

Please check the page - http://www.skate.co.uk/New%20Admin/onescript.php - The drop down menu goes behind the div below it in IE7, but works perfectly in the other browsers. Can anyone suggest something to make it work?

Thanks,
Alex
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:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Skate.co.uk</title>
 
<!--[if lt IE 7]>
<style type="text/css" media="screen">
#menuh{float:none;}
body{behavior:url(css/csshover.htc); font-size:100%;}
#menuh ul li{float:left; width: 100%;}
#menuh a{height:1%;font:bold 0.7em/1.4em arial, sans-serif;}
</style>
<![endif]-->
 
<style type="text/css">
.divbody
    {
   width:100%;
   position:absolute;
   top:130px;
   left:2px;
	}
 
.body
    {
	width:804px;
	position:absolute;
	float:left;
	border: 1px solid;
	border-color:#000000;
	background-color:#FFFFFF;
	}
	
.div
   {
   width:100%;
   position:absolute;
   top:2px;
   left:2px;
   }
 
.logo
    { 
    float:left; 
    margin:2px;
	width:200px;
	height:82px;
    }
 
.top
    {
	width:804px;
	position:absolute;
	float:left;
	border: 1px solid;
	border-color:#000000;
	background-color:#0099FF;
	}
 
.pagetitle
    {
	font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color:#000000;
	top:35px;
	left:200px;
	position:relative;
    }
 
body
    {
	background-color:#CCCCCC;
	}
 
/* Begin CSS Drop Down Menu */
 
 
#menuh-container
	{
	position: absolute;		
	top: 98px;
	left: 2px;
	}
 
#menuh
	{
	font-size: small;
	font-family: arial, helvetica, sans-serif;
	width:804px;
	float:left;
	margin:0px;
	margin-top: 0px;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid #555;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	color: white;
	background-color: royalblue;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: white;
	background-color: cornflowerblue;
	}	
			
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(../images/menu/navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(../images/menu/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
 
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:9em;	/* width of all menu boxes */
	}
 
#menuh li
	{
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}
 
#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}
 
#menuh ul ul ul
	{
	top:0;
	left:100%;
	}
 
div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}
 
div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}
 
div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}
</style>
 
 
</head>
 
<body>
 
<link href="css/style.css" rel="stylesheet" type="text/css" />
<div class="div">
<table class="top">
  <tr>
    <td>
<img src="images/skate logo.jpg" class="logo" alt="skate logo"/>
<span class="pagetitle">Skate.co.uk  Administration Control Panel</span>	</td>
  </tr>
</table>
</div>
<div id="menuh-container">
<div id="menuh">
    <ul>	
		<li><a href="v2index.php" >ACP Home</a>
	</ul>
	<ul>
		<li><a href="#" class="top_parent">Park Manager</a>
		<ul>
			    <li><a href="#">Manage Parks</a></li>
				<li><a href="#">Add Park</a></li>
				<li><a href="#">Manage Counties</a></li>
				<li><a href="#">Manage Builders</a></li>
				<li><a href="#">eMail Security</a></li>
		</ul>
		</li>
	</ul>
	
	<ul>
		<li><a href="#" class="top_parent">Statistics</a>
		<ul>
			    <li><a href="#">All Statistics</a></li>
				<li><a href="#">Park Statistics</a></li>
				<li><a href="#">Builder Statistics</a></li>
				<li><a href="#">Security Statistics</a></li>
				<li><a href="#">County Statistics</a></li>
				<li><a href="#">Traffic Statistics</a></li>
		</ul>
		</li>
	</ul>
	
	<ul>
		<li><a href="#" class="top_parent">Catalogue</a>
		<ul>
			    <li><a href="#">Products</a></li>
				<li><a href="#">Statistics</a></li>
		</ul>
		</li>
	</ul>
	
	<ul>
		<li><a href="#" class="top_parent">Images</a>
		<ul>
			    <li><a href="#">Products</a></li>
				<li><a href="#">Builders</a></li>
				<li><a href="#">Park Gallery</a></li>
				<li><a href="#">Logos</a></li>
				<li><a href="#">Affiliates</a></li>
				<li><a href="#">Other</a></li>
		</ul>
		</li>
	</ul>
</div> 	<!-- end the menuh-container div -->  
</div>	
<!-- end the menuh div -->
 
<div class="divbody">
<table class="body">
  <tr>
    <td>
<span>Body Text Here</span>
    </td>
  </tr>
</table>
</div>
 
</body>
</html>
[+][-]03.22.2008 at 03:14PM PDT, ID: 21187909

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

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

 
[+][-]03.22.2008 at 03:18PM PDT, ID: 21187921

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 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.22.2008 at 04:24PM PDT, ID: 21188073

View this solution now by starting your 7-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: Cascading Style Sheets (CSS), Hypertext Markup Language (HTML), Web Browsers
Tags: css / html, IE7, FF, Opera, Safari, http://www.skate.co.uk/New%20Admin/onescript.php
Sign Up Now!
Solution Provided By: crawfordits
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628