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

5.4

fix code to create at least the illusion that columns are equal height

Asked by ddarby14 in Cascading Style Sheets (CSS)

Tags: css, column, divs

Can anyone find a 'modest' adjustment to the following code to at least create the illusions that the columns are always the same height regardless of which column more content/longer height?  Thanks!

<BEGIN HTML CODE>
<!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>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="styles.css" type="text/css" rel="stylesheet" media="all" />
</head>
<body>

<div id="topshadow"></div>
<div id="main">
     <div id="middle">
          <div id="header">
               <div><h6>text</h6></div>
          </div>
          <div id="nav">
               <li><a href="#">personalities</a></li>
               <li class="thislink">articles</li>
               <li><a href="#">books</a></li>
               <li><a href="#">life studies</a></li>
               <li><a href="#">videos</a></li>
               <li><a href="#">photo album</a></li>
               <li><a href="#">websites</a></li>
               <li><a href="#">contact me</a></li>
          </div>
          <div id="leftcol">
               <div id="story">
                    <div id="date">Photo Albums :: Picture 001</div>
                    <div id="next"><a href="#">next</a><img src="images/arrow_right.gif" width="10" height="9" /></div>
                    <div id="previous"><img src="images/arrow_left.gif" width="10" height="9" /><a href="#">previous</a></div>
                    <div id="title"><h2>Outdoor Summer Fun with the Water Slide!</h2></div>
                    <div id="currentphoto"><img src="images/album01.jpg" width="400" height="300" /></div>

                    <div id="lightcomment"><a name="1"></a>
                         <div id="commentbody">
                              <div id="commentauthor"><strong><a target="_blank" href="#">dave</a></strong> writes:
                                   Sample text.</div>
                              <div id="commentdate">October  1, 2004 12:21 PM</div>
                              <div id="tracker"><a href="#" title="Link to this comment">[ link ]</a></div>
                         </div>
                    </div>

                    <div id="lightcomment"><a name="2"></a>
                         <div id="commentbody">
                              <div id="commentauthor"><strong><a target="_blank" href="#">dave</a></strong> writes:
                                   Sample text.</div>
                              <div id="commentdate">October  1, 2004 12:21 PM</div>
                              <div id="tracker"><a href="#" title="Link to this comment">[ link ]</a></div>
                         </div>
                    </div>

               </div>
          </div>

          <div id="rightcol">

               <div id="margintitle">Quote of the Day</div>
               <div id="quote">"About all you can do in life is be who you are. Some people will love you for you. Most will love you for what you can do for them, and some won't like you at all."</div>
               <div id="quoteauthor"><a href="#">Rita Mae Brown</a> (1944-)</div>
               <div style="clear:right;"></div>

               <div id="margintitle">Favorite Books</div>
               <ul>
                    <div id="booktitle"><li><a href="#">21 Laws of Leadership</a></li></div>
                    <div id="bookauthor">John C. Maxwell</div>
                    <div id="booktitle"><li><a href="#">Coach Yourself to Success</a></li></div>
                    <div id="bookauthor">Talane Miedaner</div>
                    <div id="booktitle"><li><a href="#">Right-Brained Children in a Left-Brained World</a></li></div>
                    <div id="bookauthor">Jeffrey Freed &amp; Laurie Parsons</div>
               </ul>

               <div id="margintitle">Favorite Playlist</div>
               <div id="playlist">
                    <div id="currentcd"><img src="images/simon_garfunkel.jpg" width="50" height="50" border="0" /></div>
                    <div id="currentcd"><img src="images/jimmy_buffett.jpg" width="50" height="50" border="0" /></div>
                    <div id="currentcd"><img src="images/lee_greenwood.jpg" width="50" height="49" border="0" /></div>
               </div>
               <div style="clear:left;"></div>

               <div id="margintitle">Recent Articles</div>
               <ul>
                    <div id="storytitle">
                         <li>Text</li>
                    </div>
               </ul>

               <div id="margintitle">Stories by Category</div>
               <ul>
                    <div id="storytitle"><li><a href="#">Football</a></li></div>
                    <div id="storytitle"><li><a href="#">Entrepreneurs in America</a></li></div>
                    <div id="storytitle"><li><a href="#">Technology</a></li></div>
               </ul>

               <div id="margintitle">Life Studies</div>
               <ul>
                    <div id="storytitle"><li><a href="#">Benjamin Franklin</a></li></div>
                    <div id="storytitle"><li><a href="#">Thomas Jefferson</a></li></div>
               </ul>

          </div>
     </div>
</div>
<div id="footer">footer</div>

</body>
</html>
<END HTML CODE>
[+][-]11/24/04 04:34 PM, ID: 12671020Accepted 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, column, divs
Sign Up Now!
Solution Provided By: dakyd
Participating Experts: 2
Solution Grade: A
 
[+][-]11/23/04 03:37 PM, ID: 12660660Author 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.

 
[+][-]11/23/04 03:59 PM, ID: 12660784Expert 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.

 
[+][-]11/23/04 04:08 PM, ID: 12660839Expert 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.

 
[+][-]11/23/04 04:10 PM, ID: 12660847Author 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.

 
[+][-]11/23/04 04:29 PM, ID: 12660925Expert 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.

 
[+][-]11/23/04 04:42 PM, ID: 12660986Expert 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.

 
[+][-]11/23/04 05:40 PM, ID: 12661230Author 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.

 
[+][-]11/23/04 05:42 PM, ID: 12661235Author 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.

 
[+][-]11/23/04 05:43 PM, ID: 12661239Author 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.

 
[+][-]11/24/04 10:09 AM, ID: 12668189Expert 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.

 
[+][-]11/24/04 11:41 AM, ID: 12669109Expert 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.

 
[+][-]11/24/04 12:16 PM, ID: 12669403Expert 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.

 
[+][-]11/24/04 01:01 PM, ID: 12669754Author 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.

 
[+][-]11/24/04 01:03 PM, ID: 12669770Author 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.

 
[+][-]11/24/04 01:26 PM, ID: 12669971Expert 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.

 
[+][-]11/24/04 01:48 PM, ID: 12670141Author 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.

 
[+][-]11/24/04 04:45 PM, ID: 12671065Author 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.

 
[+][-]11/29/04 11:45 AM, ID: 12699489Expert 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.

 
[+][-]11/29/04 01:08 PM, ID: 12700293Author 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.

 
[+][-]11/29/04 03:17 PM, ID: 12701341Expert 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.

 
[+][-]11/29/04 03:32 PM, ID: 12701414Author 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.

 
[+][-]11/29/04 04:31 PM, ID: 12701690Assisted 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.

 
[+][-]11/30/04 10:08 AM, ID: 12708550Author 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.

 
[+][-]11/30/04 12:03 PM, ID: 12709738Expert 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.

 
[+][-]11/30/04 12:26 PM, ID: 12709941Author 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.

 
[+][-]11/30/04 12:36 PM, ID: 12710045Expert 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.

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