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

01/18/2009 at 11:38PM PST, ID: 24063047
[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.3

CSS Layout problem... Good in IE6, bad in FF

Asked by krussell222 in Cascading Style Sheets (CSS)

Tags: css, html

I have yet another CSS layout question.  As you can see in the attached images I'm having an issue getting a layout to work properly in FF of all things.  It seems fine in IE6, but I'm sure that is accidental ;-)

The black footer bar is is not sitting at the bottom of the page in FF like it is in IE.
I've included the code... probably easier to look at it live.
You can view the live page at http://ibc.csrussells.us/about/company/
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:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<title>  Company : Innovative Business Concepts</title>
<meta name="generator" content="WordPress 2.7" />
 
<!--[if lte IE 7]>
<style type="text/css">
html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/
</style>
<![endif]-->
 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
</script>
<style type="text/css" media="screen">
<!-- @import url( http://ibc.csrussells.us/wp-content/themes/blue-zinfandel-3column/style.css ); -->
</style>
</head>
<body>
<div id="ibc_masthead"></div>
<div id="smoothmenu1" class="ddsmoothmenu"> 
<ul id="dropmenu">
<li class="page_item"><a href="http://ibc.csrussells.us">Home</a></li> 
<li class="page_item page-item-2 current_page_ancestor current_page_parent"><a href="http://ibc.csrussells.us/about/" title="About Us">About Us</a>
<ul>
	<li class="page_item page-item-35 current_page_item"><a href="http://ibc.csrussells.us/about/company/" title="Company">Company</a></li>
	<li class="page_item page-item-42"><a href="http://ibc.csrussells.us/about/turnkey-specialists/" title="Turnkey Specialists">Turnkey Specialists</a></li>
	<li class="page_item page-item-38"><a href="http://ibc.csrussells.us/about/founder/" title="Founder">Founder</a></li>
	<li class="page_item page-item-44"><a href="http://ibc.csrussells.us/about/associates/" title="Associates">Associates</a></li>
</ul>
</li>
<li class="page_item page-item-32"><a href="http://ibc.csrussells.us/pds-solutions/" title="PDS Solutions">PDS Solutions</a>
<ul>
	<li class="page_item page-item-15"><a href="http://ibc.csrussells.us/pds-solutions/step-1/" title="Step 1">Step 1</a></li>
	<li class="page_item page-item-17"><a href="http://ibc.csrussells.us/pds-solutions/step-2/" title="Step 2">Step 2</a></li>
	<li class="page_item page-item-19"><a href="http://ibc.csrussells.us/pds-solutions/step-3/" title="Step 3">Step 3</a></li>
	<li class="page_item page-item-21"><a href="http://ibc.csrussells.us/pds-solutions/step-4/" title="Step 4">Step 4</a></li>
	<li class="page_item page-item-23"><a href="http://ibc.csrussells.us/pds-solutions/step-5/" title="Step 5">Step 5</a></li>
	<li class="page_item page-item-25"><a href="http://ibc.csrussells.us/pds-solutions/step-6/" title="Step 6">Step 6</a></li>
	<li class="page_item page-item-27"><a href="http://ibc.csrussells.us/pds-solutions/step-7/" title="Step 7">Step 7</a></li>
</ul>
</li>
<li class="page_item page-item-52"><a href="http://ibc.csrussells.us/programs/" title="Programs">Programs</a>
<ul>
	<li class="page_item page-item-54"><a href="http://ibc.csrussells.us/programs/executive-fastrack/" title="Executive FASTRACK">Executive FASTRACK</a></li>
	<li class="page_item page-item-57"><a href="http://ibc.csrussells.us/programs/coachconsult/" title="CoachCONSULT">CoachCONSULT</a></li>
	<li class="page_item page-item-59"><a href="http://ibc.csrussells.us/programs/pds-workshops/" title="PDS Workshops">PDS Workshops</a></li>
</ul>
</li>
<li class="page_item page-item-61"><a href="http://ibc.csrussells.us/products/" title="Products">Products</a>
<ul>
	<li class="page_item page-item-63"><a href="http://ibc.csrussells.us/products/software/" title="Software">Software</a>
	<ul>
		<li class="page_item page-item-65"><a href="http://ibc.csrussells.us/products/software/prospect-profiler/" title="Prospect Profiler">Prospect Profiler</a></li>
		<li class="page_item page-item-67"><a href="http://ibc.csrussells.us/products/software/pds-templates/" title="PDS Templates">PDS Templates</a></li>
	</ul>
</li>
</ul>
</li>
<li class="page_item page-item-69"><a href="http://ibc.csrussells.us/special-events/" title="Special Events">Special Events</a>
<ul>
	<li class="page_item page-item-71"><a href="http://ibc.csrussells.us/special-events/free-seminars/" title="Free Seminars">Free Seminars</a></li>
</ul>
</li>
<li class="page_item page-item-73"><a href="http://ibc.csrussells.us/keynote-speaking/" title="Keynote Speaking">Keynote Speaking</a></li>
<li class="page_item page-item-75"><a href="http://ibc.csrussells.us/blog/" title="Blog">Blog</a></li>
<li class="page_item page-item-77"><a href="http://ibc.csrussells.us/free-bonus-offer/" title="Free Bonus Offer">Free Bonus Offer</a></li>
<li class="page_item page-item-79"><a href="http://ibc.csrussells.us/free-bpa/" title="Free BPA">Free BPA</a></li>
<li class="page_item page-item-81"><a href="http://ibc.csrussells.us/contact-us/" title="Contact Us">Contact Us</a></li>
</ul>
<br style="clear: left" />
</div>
<!-- </div> -->
 
<!-- end the menuh container div --> 
 
 
<div id="header_wrap">
<div id="header">
<p>Alternative content</p>
</div>
</div>
<div id="wrap"><div id="content">
  <!-- begin l_sidebar -->
 
	<div id="l_sidebar">
	<ul id="l_sidebarwidgeted">
		
	<li id="Recent">
	<h2>Recently Written</h2>
		<ul>
				<li><a href='http://ibc.csrussells.us/2009/01/nudda-post/' title='Nudda Post'>Nudda Post</a></li>
	<li><a href='http://ibc.csrussells.us/2009/01/hello-world/' title='Article One'>Article One</a></li>
		</ul>
	</li>
 
	<li id="Categories">
	<h2>Categories</h2>
		<ul>
				<li class="cat-item cat-item-1"><a href="http://ibc.csrussells.us/category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a>
</li>
		</ul>
	</li>
		
	<li id="Archives">
	<h2>Archives</h2>
		<ul>
				<li><a href='http://ibc.csrussells.us/2009/01/' title='January 2009'>January 2009</a></li>
		</ul>
	</li>
		
	<li id="Admin">
	<h2>Admin</h2>
		<ul>
						<li><a href="http://ibc.csrussells.us/wp-login.php">Log in</a></li>
			<li><a href="http://www.wordpress.org/">Wordpress</a></li>
						<li><a href="http://validator.w3.org/check?uri=referer">XHTML</a></li>
		</ul>
	</li>
 
	<li id="Search">	
	<h2>Search</h2>
	   	<form id="searchform" method="get" action="/index.php">
		<input type="text" name="s" id="s" size="30" value="search this site..."/></form>
	</li>
		
				</ul>
			
</div>
 
<!-- end l_sidebar -->    <div id="contentmiddle">
	    <div class="contenttitle">
	<h1>Company</h1>
	</div>
	<br />
<div style="clear:both;"></div>
	<div class="postspace"></div>
		</div>
  <!-- begin r_sidebar -->
 
	<div id="r_sidebar">
	<ul id="r_sidebarwidgeted">
	
	<li id="Blogroll">
	<h2>Blogroll</h2>
		<ul>
			<li><a href="http://wordpress.org/development/">Development Blog</a></li>
<li><a href="http://codex.wordpress.org/">Documentation</a></li>
<li><a href="http://wordpress.org/extend/plugins/">Plugins</a></li>
<li><a href="http://wordpress.org/extend/ideas/">Suggest Ideas</a></li>
<li><a href="http://wordpress.org/support/">Support Forum</a></li>
<li><a href="http://wordpress.org/extend/themes/">Themes</a></li>
<li><a href="http://planet.wordpress.org/">WordPress Planet</a></li>
		</ul>
	</li>
		
		</ul>
			
</div>
 
<!-- end r_sidebar --></div>
 
<!-- The main column ends  -->
</div>
<!-- begin footer -->
 
	
 
<div id="footer">
<ul>
<!--	<li>About</li> -->
	<li><a href="terms">Terms of Use</a></li>
<!--	<li>Contact</li> -->
	<li>Copyright &copy; 2009&nbsp; Innovative Business Concepts</li>
</ul>
</div>
 
 
</body>
</html>
 
 
CSS------------------
 
body {
/*	background: #EFEFEF url(images/content.gif) top center repeat-y; */
    background-color: #778d98;
	color: #333333;
	font-size: 11px;
	font-family: Arial, Helvetica, Sans-Serif;
	margin: 0px auto 0px;
	padding: 0px;
	}
#menu_container {
	width: 1030px;
	margin:0 auto;
}
 
#ibc_masthead {
	clear:both;
	width:1030px; 
	margin:0 auto;
	height: 56px;
	background: url(http://www.csrussells.us/ibc/wp-content/themes/ibc/images/ibc_banner.jpg);
}	
#wrap {
	
	color: #333333;
	font-size: 11px;
	font-family: Arial, Sans-Serif;
	margin: 0 auto;
	padding: 0px;
	width: 1030px;
	background-color: #ffffff;
}
#header_wrap { 
    position: relative;
    width:1030px; 
	height:322px; 
	margin:0 auto;
	padding:0;
}
#header_sub { 
    position: relative;
    width:1030px; 
	height:322px; 
	margin:0 auto;
	background-color: #ffffff;
}
#header { 
	height:322px; 
	width:1030px; 
	margin:0 auto; 
	padding: 0;
 
/*	background: url(http://www.csrussells.us/ibc/wp-content/themes/ibc/images/default.jpg); */
}
#header_1 { 
	height:322px; 
	width:1030px; 
	margin:0 auto; 
	position:relative;
	background: url(http://www.csrussells.us/ibc/wp-content/themes/blue-zinfandel-3column/images/step_one.jpg);
}
#header_sub { 
	height:322px; 
	width:1030px; 
	margin:0 auto; 
}
	
/************************************************
*	Hyperlinks									*
************************************************/
 
a, a:visited{
	color: #507AA5;
	text-decoration: none;
	}
	
a:hover{
	text-decoration: underline;
	}
	
/************************************************
*	Header  									*
************************************************/
/*
#header {
	background: #FFFFFF;
	width: 1030px;
	margin: 0px auto 0px;
	padding: 10px 0px 10px 0px;
	text-align: center;
	border-top: 5px solid #658DB5;
    text-transform: uppercase;
	}
*/	
	
/************************************************
*	Navbar      								*
************************************************/
 
#navbar {
	background: #FFFFFF;
	width: 1000px;
	margin: 0px auto 0px;
	padding: 10px 0px 10px 0px;
	text-align: center;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	}
	
#navbar li {
	display: inline;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	}
		
#navbar ul {
	margin: 0px;
	padding: 0px;
	}
	
#navbar ul li a {
	font-family: Times New Roman, Helvetica, Sans-Serif;
	font-size: 22px;
	color: #333333;
	padding: 0px 10px 0px 10px;
	margin: 0px;
	text-decoration: none;
	text-transform: uppercase;
	}
 
#navbar ul li a:hover {
	color: #658DB5;
	}
	
/************************************************
*	Left Sidebar      							*
************************************************/
 
#l_sidebar {
	float: left;
	width: 200px;
	margin: 0px 10px 0px 0px;
	padding: 20px 0px 20px 10px;
	display: inline;
		background-color: #ffffff;
	}
	
#l_sidebar ul {
	list-style: none;
	margin: 0px;
	padding: 0px 0px 20px 0px;
	}
	
#l_sidebar li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	}
	
#l_sidebar ul li {
	margin: 0px;
	padding: 5px 0px 0px 0px;
	}
	
#l_sidebar ul li a {
	color: #507AA5;
	text-decoration: none;
	}
 
#l_sidebar ul li a:hover {
	color: #507AA5;
	text-decoration: underline;
	}
	
/************************************************
*	Right Sidebar      							*
************************************************/
	
#r_sidebar {
	float: right;
	width: 300px;
	margin: 0px 0px 0px 0px;
	padding: 20px 10px 0px 0px;
	display: inline;
	background-color: #ffffff;
	}
 
#r_sidebar p{
	padding: 2px 0px 16px 0px;
	margin: 0px;
	line-height: 20px;
	}
 
#r_sidebar ul {
	list-style: none;
	margin: 0px;
	padding: 0px 0px 20px 0px;
	}
	
#r_sidebar ul li {
	margin: 0px;
	padding: 5px 0px 0px 0px;
	}
	
#r_sidebar ul li a {
	color: #507AA5;
	text-decoration: none;
	}
 
#r_sidebar ul li a:hover {
	color: #507AA5;
	text-decoration: underline;
	}
	
/************************************************
*	Content 					     		    * 
************************************************/
 
#content {
	width: 1030px;
	margin: 0 auto;
	background-color: #ffffff;
}
 
#content p{
	padding: 5px 10px 15px 10px;
	margin: 0 0 0 0;
	line-height: 15px;
	border-bottom: solid .5px #97d7fa;
	border-right: solid .5px #97d7fa;
	border-left: solid .5px #97d7fa;
	font-size: 12px;
 
	}
	
#content p img{
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
	}
	
#content h1 {
	color: #333333;
	font-size: 14px;
	font-family: Arial, Sans-Serif;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	}
	
#content h1 a  {
	color: #333333;
	text-decoration: none;
	}
 
#content h1 a:hover {
	color: #658DB5;
	text-decoration: none;
	}
	
#content h2 {
	color: #333333;
	font-size: 14px;
	font-family: Arial, Sans-Serif;
	font-weight: bold;
	padding: 5px 0px 5px 0px;
	margin: 0px;
	border-top: 1px dotted #C0C0C0;
	border-bottom: 1px dotted #C0C0C0;
	}
	
blockquote{
	margin: 0px 25px 15px 25px;
	padding: 0px 25px 0px 10px;
	background: #E8E8E8;
	border-top: 2px solid #000000;
	border-bottom: 1px solid #000000;
	}
	
#content blockquote p{
	margin: 0px 0px 10px 0px;
	padding: 10px 0px 0px 0px;
	}
 
#contentmiddle {
	float: left;
	width: 450px;
	margin: 0px 0px 0px 0px;
	padding: 20px 20px 10px 20px;
	display: inline;
		background-color: #ffffff;
	}
	
#contentmiddle p img{
	float: left;
	border: none;
	margin-right: 15px;
	margin-bottom: 10px;
	}
	
#contentmiddle ol{
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 10px 0px;
	}
	
#contentmiddle ol li{
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 5px 0px;
	}
	
#contentmiddle ul{
	list-style-type: square;
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 10px 0px;
	}
	
#contentmiddle ul li{
	list-style-type: square;
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 5px 0px;
	}
	
.contentdate {
	background: #FFFFFF url(images/date.gif);
	float: left;
	width: 45px;
	height: 50px;
	margin: 0px;
	padding: 0px;
	}
	
.contentdate h3 {
	color: #FFFFFF;
	font-size: 10px;
	font-weight: normal;
	padding: 1px 0px 0px 10px;
	margin: 0px;
	text-transform: uppercase;
	}
	
.contentdate h4 {
	font-family: Times New Roman, Helvetica, Sans-Serif;
	color: #999999;
	font-size: 21px;
	font-weight: bold;
	padding: 5px 4px 0px 0px;
	margin: 0px;
	text-align: center;
	}
	
.contenttitle {
	float: left;
	width: 445px;
	margin: 0 0 10px 0;
	padding: 1px 0px 1px 5px;
	background: url(http://www.csrussells.us/ibc/wp-content/themes/ibc/images/navbar.jpg);
    
}
	
#content img.wp-smiley {
	float: none;
	border: none;
	padding: 0px;
	margin: 0px;
	}
 
#content img.wp-wink {
	float: none;
	border: none;
	padding: 0px;
	margin: 0px;
	}
	
.postspace {
	width: 440px;
	height: 32px;
	margin: 0px;
	padding: 0px;
	}
	
#news {
	width: 1030px;
	height:15px;
/*	padding: 1px 0px 1px 0px;
	font-family: arial, sans-serif;
	font-size: 11px;
*/	
}
#fill {
	width: 1030px;
	height:15px;
	background-color: #96d6f9;
/*	padding: 1px 0px 1px 0px;
	font-family: arial, sans-serif;
	font-size: 11px;
*/	
}
/************************************************
*	Footer      								*
************************************************/
 
#footer {
	width: 1030px;
	background-color: #000000;
	margin: 0 auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
    border-top: 1px solid #ffffff; 
	height: 30px;
	font-size: 11px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	color: #ffffff; 
}
 
#footer a, #footer a:visited {
	color: #507aa5; 
}
 
#footer a:hover {
	
	color: #ffffff;
	text-decoration: none;
	
}
#footer ul {
	
	padding: 0;
	margin: 0;
}
#footer li {
	
	display: inline;
	list-style-type: none;
	float: left;
	overflow-x: inherit;
	overflow-y: inherit;
	padding-top: 6px;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-left: 10px;
	white-space: nowrap; 
}
 
#tabs {
	width:1030px;
	margin: 0 auto;
	padding: 0 0 5px 0;
	background-color:#ffffff; 
/*	background: url(images/tab_bg.gif) repeat-x; */
}
 
.pageKasper
{
	border-bottom-width: 3px;
	border-bottom-style: ridge;
	border-bottom-color: #f10000;
	background-color: #fffffe;
	border-right-width: 1px;
	border-right-style: ridge;
	border-right-color: #000000; 
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #f1f0ec;
	background: url(images/tab_content_bg.gif) repeat-x;  
}
 
.tabPage
{
    font-family: Tahoma;
    font-size: 11px;
    color: #333333;
	padding: 0 10px 0px 10px;
}
Attachments:
 
IE6
IE6
 
 
FF3
FF3
 
 
Keywords: CSS Layout problem... Good in IE6…
 
Loading Advertisement...
 
[+][-]01/18/09 11:56 PM, ID: 23408812

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, html
Sign Up Now!
Solution Provided By: Kravimir
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20091111-EE-VQP-91 - Hierarchy / EE_QW_3_20080625