Advertisement
Advertisement
| 08.19.2008 at 06:03AM PDT, ID: 23659379 |
|
[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.
Your Input Matters 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! |
||
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>
|