Advertisement

08.14.2008 at 10:38AM PDT, ID: 23648996
[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!

8.5

Menu doesnt line up in FireFox

Asked by MechX2 in Cascading Style Sheets (CSS), Internet Explorer Web Browser, Firefox Web Browser

Tags: ,

I am working on a site that loads great in Internet Explorer 7 but in Firefox the top menu doesnt align as well as the phonenumber and flags.

Below is the header from my index (php) and the index-layout.css snippet.

And also attached is a img on how the site looks in Internet Explorer, the way its intended to look. In fire fox, the area I circled in yellow is shifted down about three quarters of an inch. That would be The Phone number, the two flags are instead of aside of eachother, one ontop another, the log in text, and  the menu text is also shifted down.

Any Ideas?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:
<!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=utf-8" />
	<title>World SIM  - Strona Glowna</title>
	<link rel="shortcut icon" href="/pl/imgs/favicon.ico" />
	<style type="text/css">
		@import url("/pl/index-layout.css");
		@import url("/pl/index.css");
	</style>
</head>
 
<body>
<div id="wrap">
  <div id="header">
	<div id="lefthead">
<a href="index.php"><img border="0" src="imgs/logo.png"></a>
	</div>
	<div id="righthead"><img src="/pl/imgs/phoneNumb.gif" alt="1-888-My-Eugro" width="126" height="19" /><img src="/pl/spacer.gif" width="10" height="19" /><img src="/pl/imgs/uk.gif" alt="English" width="38" height="19" border="0" usemap="#Map" />
<map name="Map" id="Map">
  <area shape="rect" coords="0,1,37,17" href="http://www.xxxxxx/>
</map><img src="/pl/spacer.gif" alt="" width="10" height="19" /><img src="/pl/imgs/pl.gif" alt="Polish" width="28" height="19" border="0" usemap="#Map2" />
<map name="Map2" id="Map2"><area shape="rect" coords="0,3,28,17" href="/pl/index.php" />
</map><br />
		<div class="logline">Posiadasz WorldSIM?<a class="log" href="/pl/account.php">Zaloguj sie</a></div>
<ul id="menulist"><li><a href="/pl/rates.php">Ceny za poBczenia ge</a></li>
			<li><a href="/pl/phones.php">Nasze telefony</a></li>
			<li><a href="/pl/simcards.php">Karty SIM</a></li>
			<li><a href="/pl/addminutes.php">Minuty</a></li>
	  </ul> 
	</div>
  </div>
 
-------------------------------
 
Index-layout.css:
 
-------------------------------
 
* {
	margin: 0 auto;
	padding: 0;	
}
	
body {
	margin: 0 auto;
	padding: 0;
	background-color:#FFFFFF;
	font-size: small;
	font-family: Arial, Verdana, Tahoma;
	font-weight: normal;
}
 
#wrap{	
	margin: 0 auto;
	padding: 0;
}
 
* html #wrap {
	background: transparent;
}
 
#header {
	margin: 0 auto;
	padding: 0;
	width: 1060px;
	text-align: center;
}
 
#lefthead {
	float: left;
	width:480px;
	padding-top: 25px;
}
 
#righthead {
	float:right;
	text-align: right;
	padding-top: 2px;
	padding-right: 89px;
}
 
.logline {
	color: #6699cc;
	position: relative;
	top: 13px;
}
 
a.log:visited, a.log:link, a.log:active {
	color: #333366;
	text-decoration: none;
	padding-left:3px;
}
 
a.log:hover {
	color: #ccc;
	text-decoration: none;
	padding-left:3px;
}
 
#header ul {
	position: relative;
	top: 28px;
	list-style-type: none;
	color: white;
	font-weight: bold;	
}
 
#menulist li {
	display: inline;
	list-style-type: none;
	padding: 0 0 0 33px;
}
 
#menulist a {
	color:white;
	font-weight: 900;
	text-decoration: none;
}
 
#menulist a:link, a:visited,  a:active{ 
	color: white;
	text-decoration: none;
}
 
#menulist a:hover { 
	color: #99ccff;
	text-decoration: none;
}
 
#middle {
	margin: 0 auto;
	padding: 0;
	background: transparent url('imgs/middle.gif') repeat-y;
	width: 1060px;
}
 
 
#footer {
	clear: both;
	margin: 0 auto;
	padding: 0;
	background: url('imgs/footerHome.jpg') no-repeat;
	font-size:90%;
	width: 1060px;
	text-align: center;
	min-height: 150px;
	height: 150px;
}
 
#footer ul {
	list-style-type: none;
	position:relative;
	top: 35px;
}
 
 
#navlist li {
	color: white;
	display: inline;
	list-style-type: none;
	padding: 0 15px 0 15px;
}
 
#navlist a {
	color: white;
	font-weight: normal;
}
 
#navlist a:link, a:visited,  a:active{ 
	color: white;
	text-decoration: none;
}
 
#navlist a:hover { 
	color: #99ccff;
	text-decoration: none;
}
 
div#copy {
	padding-top:70px;
	color: #a3c9ea;
	text-align:center;
	font-size:95%;
	font-weight: bold;
}
Attachments:
 
ScreenShotinIE7
ScreenShotinIE7
 
[+][-]08.14.2008 at 12:22PM PDT, ID: 22233409

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

 
[+][-]08.14.2008 at 12:23PM PDT, ID: 22233420

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.

 
[+][-]08.14.2008 at 12:24PM PDT, ID: 22233430

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

 
[+][-]08.14.2008 at 12:27PM PDT, ID: 22233455

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.

 
[+][-]08.14.2008 at 12:29PM PDT, ID: 22233469

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

 
[+][-]08.14.2008 at 12:31PM PDT, ID: 22233498

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.

 
[+][-]08.14.2008 at 12:33PM PDT, ID: 22233513

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.

 
[+][-]08.14.2008 at 12:35PM PDT, ID: 22233534

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

 
[+][-]08.14.2008 at 12:36PM PDT, ID: 22233548

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

 
[+][-]08.14.2008 at 12:41PM PDT, ID: 22233586

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.

 
[+][-]08.14.2008 at 12:46PM PDT, ID: 22233631

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: Cascading Style Sheets (CSS), Internet Explorer Web Browser, Firefox Web Browser
Tags: CSS, Internet Explorer and Firefox
Sign Up Now!
Solution Provided By: Steggs
Participating Experts: 1
Solution Grade: A
 
 
[+][-]08.14.2008 at 12:46PM PDT, ID: 22233633

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

 
[+][-]08.14.2008 at 12:51PM PDT, ID: 22233677

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.

 
[+][-]08.14.2008 at 12:58PM PDT, ID: 22233726

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

 
[+][-]08.14.2008 at 01:06PM PDT, ID: 22233782

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.

 
[+][-]08.14.2008 at 01:10PM PDT, ID: 22233818

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.

 
[+][-]08.14.2008 at 01:32PM PDT, ID: 22233991

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

 
[+][-]08.14.2008 at 01:37PM PDT, ID: 22234033

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.

 
[+][-]08.14.2008 at 01:40PM PDT, ID: 22234055

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

 
[+][-]08.14.2008 at 01:42PM PDT, ID: 22234066

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.

 
[+][-]08.14.2008 at 01:48PM PDT, ID: 22234113

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

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