[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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.4

CSS issues in FF

Asked by svp28 in Cascading Style Sheets (CSS)

Tags: css

I have been working on a site and I thought everything was going weell until I looked at it in FF 2.0.  The page got even worse in IE 5.

You'll notice images do not match up and the nav bar looks especially bad.
http://www.flintstreet.net/knights/default2.asp

Can something be done to make it look ok in IE 5+ and FF?

Thnaks.

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:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
<%@LANGUAGE="VBSCRIPT"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
	<title>Knights of Columbus</title>
	<meta name="description" content="Knights of Columbus">
	<meta name="copyright" content="Copyright (c) 2004 Knights of Columbus">
	<meta name="author" content="Knights of Columbus">
 
	<style type="text/css">
	body,
	html {
		margin:0;
		padding:0;
		background:#235B96;
		color:#000;
	}
	body {
		min-width:975px;
	}
	#wrap {
		background:white;
		margin:0px auto;
		width:975px;
	}
 
	#nav {
		font-family: verdana;
		font-size: 14px;	
		float: right; 
		text-align: center;
		Width: 706px;
		Height: 16px;
		margin-top: -4px;
		background-image: url(images/bar.jpg); 
		padding: 0px 0px 9px 0px;
 
	}
	#nav ul
	{
		list-style-image: url('images/icon.gif')
		font-family: verdana;
		list-style-type: none;
 
	}
	
	#nav ul li {
	display: inline;
	margin: 0px 5px 0px 0px;
	padding: -4px 5px 5px 0px;
	}
	
	#nav ul li a
	{
		text-decoration: none;
		color: black;
 
	}
	
	#nav ul li a:hover
	{
		color: #1e62a9;
		font-weight: normal;
	}
	
	#sidebar {
		float: left;
		margin-top: -4px;
		padding: 0px;
		width:269px;
		
	}
 
	#main {
		margin-top: -4px;
		padding: 5px;
		background:white;
		float:right;
		width:696px;
		font-family: verdana;		
		font-size: 13px;		
 
    }
		
 
 
	#cLeft {
		margin-left: 15px;
		margin-top: 10px;
		padding: 0px 10px 0px 10px;
		background:white;
		float:left;
		width:300px;
		height: 200px;
		/* border: solid; red; 1px; */
    }
	
	#cLeft h2 {	
	font-size: 20px;
	color: #F09B1C;
	font-weight: normal;
	margin: 0px 0px 3px 0px;	
				
	}
 
	#cLeft p {	
	margin: 0px 0px 0px 0px;	
 
	}
 
	#cLeft img {	
	vertical-align: middle;
	padding: 0px 5px 0px 0px;	
	}	
 
	#GreyLine {	
	clear: both;
	width: 696px;
	margin: 5px 0px -5px 0px;	
	padding: 0px 0px 0px 0px;	
 
	}	
	
	#cRight {
		margin-right: 15px;
		margin-top: 10px;
		padding: 0px 10px 0px 10px;
		background:white;
		float:right;
		width:300px;
 
    }
 
 
/* For detail info pages *?
	#PhotosRight {
	/* 	Border: solid 1px; */
		Margin: 10px 10px 10px 10px;
		background:white;
		float:right;
	
    }
	
	#cRight h2 {	
	font-size: 20px;
	color: #F09B1C;
	font-weight: normal;
	margin: 0px 0px 3px 0px;	
	/* border: black solid 1px;				*/
	}
 
	#cRight p {	
	margin: 0px 0px 0px 0px;	
	/* border: black solid 1px;				*/
	}	 
	
	p.cal1 a:link {text-decoration: none; Font: verdana; color: #225A97; font-size: 14px; weight: bold;}
	p.cal1 a:hover {font-size: 14px; weight: bold; text-decoration: none; color: #F09B1C;}
	p.cal1 a:visited {font-size: 14px; weight: bold; text-decoration: none;}	
	p.cal2 {Font: verdana; color: black; font-size: 11px; weight: normal;}
			
	#cRight img {	
	vertical-align: middle;
	padding: 0px 5px 0px 0px;		
	}	
 
	#footer {
		background:#cc9;
		clear:both;
		margin-top:15px;
	}
	#footer p {
		font-size: 10px;
		font-family: verdana;
		text-align: center;
		padding: 3px 0px 5px 0px;
		margin:0px;
    }
	
	img.top {
	
	position:absolute;
	top:0px;
	float: left;
	}
	
	#NavLeft {
		float: left; 
		Width: 269px;
		margin-top: -4px;
		Height: 22px;
		background-image: url(images/leftmenu.jpg);
		}
 
	
	
	</style>
</head>
<body>
<div id="wrap">
	
  <div id="header"> <img src="images/header2.jpg" width="975" height="124"> </div>
 
  <div id="NavLeft">
  	</div>  	
  <div id="nav"> 
    <ul>
      <li><a href="#">About Us </a><img src="images/menuDivider.gif" width="2" height="15"></li>
      <li><a href="#">Social Events</a> <img src="images/menuDivider.gif" width="2" height="15"></li>
      <li><a href="#">Information</a> <img src="images/menuDivider.gif" width="2" height="15"></li>
      <li><a href="#">Membership</a> <img src="images/menuDivider.gif" width="2" height="15"></li>
      <li><a href="#">Newsletter</a> <img src="images/menuDivider.gif" width="2" height="15"></li>
      <li><a href="#">Contact </a>Us</li>
    </ul>
	</div>
	
	
  <div id="main"> 
      
    <div id="cLeft"> 
      <h2> <img src="images/icon.gif" width="32" height="31">Our Mission</h2>
      <p> Knights are Catholic men, 18 years of age and older, who are committed 
        to making their community a better place, while supporting their Church. 
        Being a Knight is more than camaraderie; it is being involved with your 
        community; it is supporting your local Catholic Church, while enhancing 
        your own faith; it is about protecting and enhancing your family life. 
        Come see just what we are all about.<br>
      </p>
    </div>
 
<img src="images/photos.jpg">
 
      <div id="GreyLine" align="center"><img src="images/greyLine.gif" width="579" height="8"></div> 
      
   
    <div id="cRight">
        
      <h2> <img src="images/icon.gif" width="32" height="31">Important Notices</h2>
 
<%
Set oConn = Server.CreateObject("ADODB.Connection")
 
 
sConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
              "Data Source=" & "c:\sites\Single15\svp28\database\dbKnights.mdb"  & ";" & _
              "Persist Security Info=False"
			  
			  
'oConn.Mode = 3      '3 = adModeReadWrite
oConn.Open(sConnection)
 
			'  			(0)		   (1)		(2)		(3)			(4)		(5)			
		strSQL = "SELECT ID, dtDate, txtTitle, txtStart, txtEnd, intEventType " &_
		" FROM tblEvents " &_
		" WHERE dtDate>(Now()-1) ORDER BY tblEvents.dtDate;"
 
 
		
		Set rsGetEvents = oConn.execute(strSQL) 
		
		If rsGetEvents.eof or rsGetEvents.bof = True Then
		Response.write "There are currently no events scheduled."
		Else
		arrGetEvents = rsGetEvents.getrows
					For i = 0 to 3
						
						response.write "<p class=""cal1"">" & "<a href=""/knights/MeetingDetail.asp?Etype=" & arrGetEvents(5,i) & "&EID=" & arrGetEvents(0,i) & """>" & arrGetEvents(1,i) & " - "& arrGetEvents(2,i)& "</a>"
						response.write "</p>"
						response.write "<p class=""cal2"">"
						response.write arrGetEvents(3,i) & "-" & arrGetEvents(4,i)
						response.write "<br><br></p>"							
					next
			
 
			End IF
	
%>
 
     <font color="F09B1C"><b>More</b></font> <img src="images/arrow.gif" width="9" height="9">
	
</div>
    <div id="cLeft"> 
      <h2> <img src="images/icon.gif" width="32" height="31">How To Join</h2>	
      <p>If you are a practical Catholic man, age 18 or older, we welcome you 
        to join the leading organization of Catholic laymen.</p>
      <p> Being a Knight is more than camaraderie; it is being involved with your 
        community; it is supporting your local Catholic Church, while enhancing 
        your own faith; it is about protecting and enhancing your family life. 
        <br>
      </p>
      <p><br>
        <font color="F09B1C"><b>More</b></font> <img src="images/arrow.gif" width="9" height="9"></p>
</div>	
	</div>
  <div id="sidebar"> 
    <p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="269" height="340">
        <param name=movie value="images/k_of_c3.swf">
        <param name=quality value=high>
        <param name="SCALE" value="exactfit">
        <embed src="images/k_of_c3.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="269" height="340" scale="exactfit">
        </embed> 
      </object> </p>
 
  </div>	
  <div id="footer"> 
    <p>Knights of Columbus 
      | Fairview Council # 4044<br>
      1599 Memorial Dr. - Chicopee, MA 01020<br>
    </p>
    </div>
</div>
</body>
</html>
[+][-]11/18/07 06:41 AM, ID: 20307615Accepted Solution

View this solution now by starting your 30-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

Zone: Cascading Style Sheets (CSS)
Tags: css
Sign Up Now!
Solution Provided By: GreenGhost
Participating Experts: 2
Solution Grade: B
 
[+][-]11/18/07 12:29 AM, ID: 20306939Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628