Advertisement
Advertisement
| 03.27.2008 at 05:44AM PDT, ID: 23273740 |
|
[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: |
CSS CODE
========
Body {
background-image:url(/uploads/layout/bg/content.gif);
background-position:center;
background-position:top;
background-repeat:no-repeat;
padding:0px;
margin:0px;
}
#Wrapper {width: 960px;margin: 0px auto;}
#Navigation{margin:0px;padding:0px;margin-left:271px;clear:both;}
#Header {width: 720px;margin: auto;clear:both;}
#Logo {Position: relative;float: left;padding-top:25px;padding-bottom:18px;}
#Title {Position: relative; float: right;right: 10px;top: 20px;}
#Grid{min-height:287px; width: 720px;margin:0px auto; margin-bottom:40px; clear:both;overflow:auto;}
#GridPicture{position:relative; float:left; margin-left:16px;}
#GreyBlock{float:right;width:180px;margin-right:30px; margin-top:10px;}
#ContentWrapper {width: 760px;margin: auto;}
#LeftColumn {width: 440px;float:left;}
#LeftContent {width: 400px;float:left; margin-left:20px;margin-right:40px;}
HTML CODE
=========
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body >
<div id="Wrapper">
<div id="Navigation"></div>
<div id="Header">
<div id="Logo"></div>
<div id="Title"></div>
</div>
<div id="Grid">
<div id="GreyBlock">THIS is forcing the content down the page when too long</div>
<div id="GridPicture"></div>
</div>
<div id="ContentWrapper">
<div id="LeftColumn">
<div id="LeftContent">#this is being forced down by the content in #GreyBLock</div>
</div>
</div>
<div id="RightColumn">
<div id="RightContent"></div>
</div>
</div>
</div>
</body>
</html>
|