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

7.8

Content floating out of div

Asked by Madskl in Cascading Style Sheets (CSS), WordPress

Tags: CSS, Internet Explorer, Firefox, http://www.m3kd.com/ufofiles

I am trying to contain my wordpress blogposts in my maincontent div, but it seems that over 3 posts will make it float beneath the floatet div.

I wanted all divs in the main content area to have 100% with so the would follow the posts, no matter how much text they consist of.

I hope someone out there can help me solve this.

You can see the website here http://www.m3kd.com/ufofiles

CSS and HTML here (Its the index.php, which will be divided to the different .php files later)
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:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
CSS:
 
/*  
Tema: UFOFiles
Side: http://www.ufofiles.dk
Info: Tema til ufofiles 
Version: 0.1
Designer: Mads Klitgaard
Designer website: http://www.mkdesign.dk
 
*/
 
html {
	height: 100%;
	margin: 0;
	padding:;
}
 
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #474747 url(Images/bg_gradiant.gif) repeat-y center;
}
 
p, a, h1, h2 {
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", Tahoma, Verdana;
	font-size: 11px;
}
 
.clr {
	clear: both;
}
 
/*Container til designet*/
#wrapper {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 900px;
	height: 100%;
}
 
/*Toppen, som består af lidt tekst og log ind*/
#top {
	margin-top: 0px;
	padding-top: 8px;
	width: 900px;
	height: 41px;
	background: url(Images/bg_top.gif) no-repeat;
}
 
/*Top text - container*/
#topleft {
	position: relative;
	float: left;
}
 
/*top text - text */
.texttop {
	padding-top: 6px;
	padding-left: 25px;
	color: #979797;
}
 
/* top log ind */
#topright {
	position: relative;
	float: right;
	width: 183px;
	height: 22px;
	padding-right: 40px;
	background: url(Images/bg_topbruger.gif) no-repeat;
}
 
#topright a:link {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
 
#topright a:visited {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
 
#topright a:hover {
	font-weight: bold;
	text-decoration: underline;
}
	
 
.topnybruger {
	position: relative;
	float: left;
	padding-left: 25px;
	padding-top: 4px;
	color: #FFFFFF;
	font-weight: bold;
}
 
.topspacer {
	position: relative;
	float: left;
	padding-left: 15px;
	padding-top: 4px;
	color: #FFFFFF;
	font-weight: bold;
}
 
.toplogind {
	position: relative;
	float: left;
	padding-left: 15px;
	padding-top: 4px;
	color: #FFFFFF;
	font-weight: bold;
}
 
#topmiddle {
	height: 135px;
}
 
#logo {
	position: relative;
	float: left;
	width: 344px;
	height: 125px;
	background-image:url(Images/titel.png);
}
 
#minimenu {
	position: relative;
	float: right;
	margin-top: 60px;
	color:#CCCCCC;
}
 
#minimenu ul {
	display: inline;
	list-style: none;
	padding-right: 5px;
	padding-left: 5px;
}
 
#minimenu ul li {
	display: inline;
	list-style: none;
	padding-right: 5px;
	padding-left: 5px;
}
 
#minimenu a:link, a:visited {
	color: #cccccc;
	text-decoration: none;
}
 
#minimenu a:hover {
	color: #cccccc;
	text-decoration: underline;
}
 
#menu {
	float: left;
	width: 900px;
	height: 43px;
	background-image:url(Images/bg_menu.gif);
	background-repeat: no-repeat;
	background-position: bottom left;
}
 
#menu ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 900px;
}
 
#menu ul li {
	float: right;
	margin-right: 5px;
}
 
#menu ul a {
    color: #FFFFFF;
    margin-right: 0px;
	margin-left: 0px;
    margin-top: 2px;
    padding-top: 10px;
    display: block;
    width: 102px;
    height: 41px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    background: url(Images/menubtn_rollover.gif) no-repeat left top;
}
 
#menu ul a:visited {
    color: #FFFFFF;
    margin-right: 2px;
    margin-top: 2px;
    padding-top: 10px;
    display: block;
    width: 102px;
    height: 41px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    background: url(Images/menubtn_rollover.gif) no-repeat left top;
}
 
#menu ul li a:hover {
    background-position: right top;
}
 
 
#topdivider {
	float: left;
	margin: 0;
	padding: 0;
	width: 900px;
	height: 7px;
	background: url(Images/bg_menumain.gif) no-repeat;
}
 
#leftbar {
	float: left;
	width: 5px;
	height: 100%;
	background-color: #3a3a3a;
	margin: 0;
	padding: 0;
}
 
#maincontent {
	float: left;
	width: 543px;
	height: 100%;
	background-color: #FFFFFF;
}
 
#maincontentdivider {
	float: left;
	width: 5px;
	height: 100%;
	background: url(Images/maincontentdivider.gif) repeat-y;
}
 
#sidebarcontent {
	float: left;
	width: 342px;
	height: 100%;
	background-color: #e5e5e5;
}
 
#rightbar {
	float: left;
	width: 5px;
	height: 100%;
	background-color: #3a3a3a;
}
 
.post {
	margin: 0;
 
}
 
.titelcontent {
	float: left;
	margin-left: 0px;
	margin-top: 40px;
}
 
.contentdate {
	float: left;
	width: 47px;
	height: 37px;
	padding-top: 5px;
	padding-right: 10px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	background-image: url(Images/datebg.gif);
	background-repeat: no-repeat;
	line-height: 12px;
}
 
.headingcontent {
	float: left;
	height: 37px;
	width: 475px;
	background-color:#009cff;
	background-image:url(Images/headingbg.gif);
	background-repeat: no-repeat;
}
 
.contentheading {
	margin-bottom: 0;
	padding-left: 15px;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	color: #FFFFFF;	
}
 
.contentheading a {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
 
.contentheading a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
 
.contentheading a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
	
 
.postmetadata {
	padding-left: 15px;
	color: #FFFFFF;
}
 
.postmetadata a {
	color: #FFFFFF;
	text-decoration: underline;
}
 
.postmetadata a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
 
.content {
	float: left;
	width: 520px;
	padding-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
}
 
.content a {
	color: #009cff;
	text-decoration: none;
}
 
.content a:visited {
	color: #009cff;
	text-decoration: none;
}
 
.content a:hover {
	color: #009cff;
	text-decoration: underline;
}
 
 
.wrapcomment {
	float: right;
	margin-top: 25px;
	width: 130px;
	height: 19px;
	background-image: url(Images/commentbg.gif);
	background-repeat: no-repeat;
}
 
.comment {
	text-align: right;
	padding-top: 1px;
	padding-right: 10px;
 
}
 
.comment a {
	color: #FFFFFF;
	text-decoration: none;
}
 
.comment a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
 
.comment a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
 
#searchformdiv {
	float: left;
	margin-top: 10px;
	margin-left: 10px;
}
 
form.searchform {
	display: inline;
}
 
#rss {
	float: right;
	margin-top: 10px;
	margin-right: 15px;
	height: 24px;
	width: 98px;
	background-image: url(Images/rssimg.gif);
	background-repeat: no-repeat; 
}
 
#sidemessage {
	float: left;
	border-bottom: 1px solid #CCCCCC;
	border-top: 1px solid #CCCCCC;
	background-color: #ededed;
	width: 90%;
	margin-left: 10px;
	margin-top: 20px;
	padding: 5px;
	color: #828282;
}
 
.sidemessagelink {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 5px;
}
 
.sidemessagelink a {
	font-size: 12px;
	color: #009cff;
	text-decoration: none;
}
 
.sidemessagelink a:visited {
	color: #009cff;
	text-decoration: none;
}
 
.sidemessagelink a:hover {
	color: #009cff;
	text-decoration: underline;
}
 
#sidecategoriestop {
	width: 299px;
	height: 9px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 0;
	padding: 0;
	background: url(Images/sidebartopbg.gif) no-repeat;
}
 
#sidecategories {
	width: 299px;
	background: #3a3a3a url(Images/sidebarbottombg.gif) no-repeat left bottom;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	padding-bottom: 10px;
}
 
#sidecategories ul {
	text-align: left;
	margin-top: 0;
	margin-left: 5px;
	padding-left: 5px;
	color: #FFFFFF;
	list-style-type: none;
}
 
#sidecategories ul h2 {
	font-size:14px;
}
 
.categoriesstyle li{
	width: 200px;
	padding: 4px 0 0 20px;
	margin-top: 10px;
	margin-left: 10px;
	border-top: 1px dashed #666666;
	background: url(Images/bullet_blue.png) no-repeat left bottom;
}
	
 
#sidecategories ul a {
	color: #FFFFFF;
	text-decoration: none;
}
 
#sidecategories ul a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
 
#sidecategories ul a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
 
.recentcomments a{
	font-size: 9px;
}
 
 
.recentcomments ul li a {
	font-size: 9px;
}
 
 
.commentAuthor {
	font-size: 9px;
	font-family:"Trebuchet MS", Tahoma, Verdana;
	font-weight: bold;
}
 
.commentsstyle li{
	width: 225px;
	margin-top: 0;
}
 
 
.archivesstyle li{
	width: 200px;
	padding: 4px 0 0 20px;
	margin-top: 10px;
	margin-left: 10px;
	border-top: 1px dashed #666666;
	background: url(Images/bullet_blue.png) no-repeat left bottom;
}	
 
 
#footer {
	width: 900px;
	height: 25px;
	color: #4b4b4b;
	background-color: #3a3a3a;
	text-align: center;
	font-size: 9px;
	padding-top: 5px;
}
 
 
HTML:
 
<!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 profile="http://gmpg.org/xfn/11">
 
	<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
 
	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />	
	<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
    
	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
	<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
 
	<?php wp_get_archives('type=monthly&format=link'); ?>
	<?php //comments_popup_script(); // off by default ?>
	<?php wp_head(); ?>
</head>
<body>
<div id="wrapper">
	
    <div id="top">
    	<div id="topleft">
   		<p class="texttop">UFOFiles.dk | Velkommen - Her finder du sandheden. Tør du tro på den?</p>
        </div>
        <div id="topright">
        <p class="topnybruger"><a href="#">Ny bruger</a></p>
        <p class="topspacer">|</p><p class="toplogind"><a href="#">Log ind</a></p>
        </div>
	</div>
    
    <div id="topmiddle">
    	<div id="logo">
        </div>
        <div id="minimenu">
        	<ul>
            	<li><a href="#">info</a></li>
                <li>|</li>
                <li><a href="#">reklamer</a></li>
                <li>|</li>
                <li><a href="#">kontakt</a></li>
            </ul>
        </div>
    </div>
    
    <div id="menu">
    	<ul>
            <li><a href="">Wiki</a></li>
            <li><a href="">Kort</a></li>
        	<li><a href="">Community</a></li>
            <li><a href="">Media</a></li>
            <li><a href="">Artikler</a></li>
			<li><a href="">Forside</a></li>
        </ul>
    
    </div>
    
    <div id="topdivider">
    </div>
    
    <div id="leftbar">
    </div>
    
    <div id="maincontent">
    	<div class="post" id="post-<?php the_ID(); ?>" >
    			<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
				<div class="titelcontent">
            	  <p class="contentdate"><?php the_time('j'); ?><br /><?php the_time('M'); ?></p>
                  	<div class="headingcontent">
        			<h2 class="contentheading"><a href="<?php the_permalink(); ?>" titel="<?php the_title();?>"><?php the_title(); ?></a></h2>
                        <p class="postmetadata">
                      		<?php _e('Skrevet under'); ?> <?php the_category(',') ?> <?php _e('af'); ?> <?php the_author(); ?><?php 			
							edit_post_link('Rediger' ,	' &#124; ', ''); ?>
                        </p>
                     </div>
                  </div>
                  <div class="clr">
                  </div>
       			 <div class="content">
        			<?php the_content(); ?>
                    <div class="wrapcomment">
                	 <p class="comment">
                 		<?php comments_popup_link('0 kommentarer ','1 kommentar ','% Kommentarer'); ?> 
             	    </p>
                    </div>
       			 </div>
 
        <?php endwhile; ?>
        	<div class="navigation">
            	<?php posts_nav_link(); ?>
            </div>
		
        <?php else : ?>
			<div class="post">
				<h2><?php _e('Ikke Fundet'); ?></h2>
			</div>
        <?php endif; ?>
	</div> 
 </div>
    <div id="maincontentdivider">
    </div>
 
    <div id="sidebarcontent">
    	<div id="searchformdiv">
        	<?php include(TEMPLATEPATH .'/searchform.php'); ?>
        </div>
        <div id="rss">
        </div>
        <div class="clr">
        </div>
        <div id="sidemessage">
        	<p>Velkommen til UFOFiles.dk, stedet for ufo interesserede mennesker. På siden her vil du kunne finde artikler, nyheder, film, billeder, og et community, hvor folk diskutere omkring forskellige punkter, som har med UFO'er at gøre. Har du lyst til at være en del af det?</p>
            <p class="sidemessagelink"><a href="">Bliv Medlem</a></p>
        </div>
        <div class="clr">
        </div>
        <div id="sidecategoriestop">
        </div>
        <div id="sidecategories">
        	<ul>
            	<li><h2><?php _e('Kategorier'); ?></h2>
                	<ul class="categoriesstyle">
                    	<?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'); ?>
                    </ul>
                </li>
                <li><br /><h2><?php _e('Seneste Kommentarer'); ?></h2>
               	    <ul class="commentsstyle">
                    	<?php if(function_exists('fp_get_recent_comments')) {echo fp_get_recent_comments(7, 5, 5, 0); }?>
                    </ul>
                </li>
                <li><br /><h2><?php _e('Arkiv'); ?></h2>
                	<ul class="archivesstyle">
                    	<?php wp_get_archives('type=monthly'); ?>
                    </ul>
                </li>
            </ul>
        </div>
    </div>
 
    <div id="rightbar">
    </div>
    
    <div class="clr">
    </div>
    
    <div id="footer">
    <p>UFOFiles.dk 2008 All Rights Reserved</p>
    </div>
 
 
 </div>
 
 
</body>
</html>
[+][-]04/18/08 06:58 AM, ID: 21385784Accepted 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

Zones: Cascading Style Sheets (CSS), WordPress
Tags: CSS, Internet Explorer, Firefox, http://www.m3kd.com/ufofiles
Sign Up Now!
Solution Provided By: glumlun
Participating Experts: 4
Solution Grade: A
 
[+][-]04/18/08 04:56 AM, ID: 21384953Expert Comment

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

 
[+][-]04/18/08 05:13 AM, ID: 21385044Expert Comment

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

 
[+][-]04/18/08 05:18 AM, ID: 21385073Author Comment

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

 
[+][-]04/18/08 06:36 AM, ID: 21385580Expert Comment

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

 
[+][-]04/18/08 06:40 AM, ID: 21385605Author Comment

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

 
[+][-]04/18/08 06:41 AM, ID: 21385611Expert Comment

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

 
[+][-]04/18/08 06:48 AM, ID: 21385681Expert Comment

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

 
[+][-]04/18/08 07:01 AM, ID: 21385801Author Comment

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

 
[+][-]04/18/08 07:04 AM, ID: 21385823Assisted 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.

 
[+][-]04/18/08 07:04 AM, ID: 21385827Expert Comment

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

 
[+][-]04/18/08 07:09 AM, ID: 21385881Author Comment

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

 
[+][-]04/18/08 07:11 AM, ID: 21385903Expert Comment

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

 
[+][-]04/18/08 07:20 AM, ID: 21385988Author Comment

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

 
[+][-]04/18/08 07:23 AM, ID: 21386015Expert Comment

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

 
[+][-]04/18/08 07:24 AM, ID: 21386030Expert Comment

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

 
[+][-]04/18/08 07:41 AM, ID: 21386200Author Comment

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

 
[+][-]04/18/08 07:45 AM, ID: 21386233Assisted 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.

 
[+][-]04/18/08 07:48 AM, ID: 21386265Author Comment

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

 
[+][-]04/18/08 07:50 AM, ID: 21386281Assisted 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.

 
[+][-]04/18/08 07:54 AM, ID: 21386318Assisted 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.

 
[+][-]04/18/08 07:54 AM, ID: 21386319Author Comment

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

 
[+][-]04/18/08 07:56 AM, ID: 21386341Author Comment

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

 
[+][-]04/18/08 07:59 AM, ID: 21386372Expert Comment

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

 
[+][-]04/18/08 08:01 AM, ID: 21386390Author Comment

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

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628