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

9.0

Having a problem with CSS Floating Divs and Height Issues

Asked by maddhacker24 in Cascading Style Sheets (CSS), Hypertext Markup Language (HTML)

Tags: Html, CSS, IE 6,7 Firefox

I've been fooling around with converting my current layout which is full of tables to a CSS tableless layout and have been running into some problems.

1.)  I cant get the footer to clear both left and riight colums and align itself to the bottom of the page.

2.)  I cant get the site container to extend further then the browser window.  It should extend with the content that is contained within it...(leftcolumn,mainconten,rightcolumn)

3.)  I cant seem to get the layout to look like this:
http://uploads.killsometime.com/Sample/Correct_Example.gif

Im attaching my page code for your review. You can also see the page at:
http://uploads.killsometime.com/Sample/Tableless_Template_Layout.htm
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:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Layout Sample</title>
<style type="text/css">
	html, body {
		height: 100%;
		min-height: 100%;
		padding: 0;
		margin: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #000000;
		background: #999999 url("KST_BG.gif") top left repeat-x;
		text-align: center; /* center things in pre-IE6 */
	
	}
	
	/* IE 6 Hack */
	* html #Container {
		height: 100%;
	}
	
	/* Holds the whole site in the middle of the browser at the right size. */
	#Container {
		width : 998px;
		height: 100%;
		min-height: 100%;
		margin: 0 auto;
		padding: 0;
		background: url("Content_BG.gif"); background-repeat: repeat; 
		border: 2px solid #000000;
	}
	
	/* Header Container */
	#Header {
		width: 100%;
		clear: both;
	}
	
	/* LeftColumn Container */
	#LeftColumn {
		width: 160px;
		height: 100%;
		min-height: 100%;
		background-color: #404040;
		border-top: 2px solid #000000;
		border-right: 2px solid #000000;
		float: left;
	}
	
	/* Content Area Container */
	#MainContentContainer {
		margin: 0px 0px 0px 0px;
		width: 534px;
		height: 100%;
		min-height: 100%;
		text-align: left;
		border-top: 2px solid #000000;
		float: left;
	}
	
	/* Right Column Container */
	#RightColumn {
		width: 300px;
		height: 100%;
		min-height: 100%;
		padding: 0;
		margin: 0;
		border-top: 2px solid #000000;
		border-left: 2px solid #000000;
		float: left;
	}
	
	/* Footer Container */
	#Footer {
		width: 100%;
		clear: both;
		border-top: 2px solid #000000;
		float: left;
	}
</style> 
</head>
 
<body>
<div id="Container">	
    <!-- Header Section -->
	<div id="Header">
    	<img src="header_sample.gif" width="998" height="110" />
  	</div>
      
	<!-- LeftColumn Section -->
	<div id="LeftColumn">
    	<img src="LeftColumn_sample.gif" width="160" height="1500" />
	</div>      
    
    <!-- ####### MainContent Section ########-->
	<div id="MainContentContainer">
		<h1>Main Content Here</h1>
	</div>
    
	<!-- RightColumn Section -->
	<div id="RightColumn">
    	<img src="RightColumn_sample.gif" width="300" height="1200" />
	</div>
         
    <!-- Footer Section -->
	<div id="Footer">
    	<img src="Footer_sample.gif" width="998" height="60" />
  	</div>
</div>
</body>
</html>
[+][-]08/19/08 08:23 AM, ID: 22260637Accepted 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), Hypertext Markup Language (HTML)
Tags: Html, CSS, IE 6,7 Firefox
Sign Up Now!
Solution Provided By: TheKyle
Participating Experts: 3
Solution Grade: A
 
[+][-]08/19/08 07:28 PM, ID: 22265658Expert 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.

 
[+][-]08/20/08 11:00 PM, ID: 22276565Expert 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.

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

 
[+][-]08/20/08 11:27 PM, ID: 22276721Expert 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...
20091021-EE-VQP-81 / EE_QW_2_20070628