Advertisement
Advertisement
| 05.16.2008 at 10:03AM PDT, ID: 23409032 |
|
[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: |
--------
CSS
--------
div.header {
position: absolute;
top: 17px;
left: 1px;
width: 823px;
height: 143px;
background: white url(images/header.png/) no-repeat;
}
div.menu {
position: absolute;
top: 0px;
left: 0px;
width: 800px;
height: 40px;
font-size: 16px;
font-family: "Modern Nr. 20";
background-image: url(images/menu.png/);
}
div.menu ul{
float:center;
padding-left: 50px;
margin: 0;
list-style-type:none;
}
div.menu ul li{
background-image: url(images/menu_button.png/);
}
div.menu ul li a{
float: left;
text-decoration: none;
color: #f7ea61;
padding: 0.6em 0.6em;
}
div.menu ul li a:hover{
text-decoration: none;
background-image: url(images/menu_button_hoover.png/);
}
div.menu ul li.active a, div#menu ul li.subactive a{
text-decoration: none;
color: white;
}
--------
HTML
--------
<div class="header">
</div>
<div class="menu">
<ul>
<li class="main active"><a class="menu" href="/">Start</a></li>
<li class="first"><a class="menu" href="about.html">About</a></li>
<li class="link"><a class="menu" href="contact.html">C...</a></li>
.
.
.
</ul>
</div>
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.16.2008 at 10:07AM PDT, ID: 21584467 |
| 05.16.2008 at 01:23PM PDT, ID: 21586143 |
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: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title></title>
<style>
div.header {
position: absolute;
top: 17px;
left: 1px;
width: 823px;
height: 143px;
background: white url(images/header.png) no-repeat;
}
div.menu {
position: absolute;
top: 0px;
left: 0px;
width: 800px;
height: 40px;
font-size: 16px;
font-family: "Modern Nr. 20";
background-image: url(images/menu.png);
}
div.menu ul{
float:center;
padding-left: 50px;
margin: 0;
list-style-type:none;
}
div.menu ul li{
float: left;
margin: 0;
background-image: url(images/menu_button.png);
border: 1px solid black;
}
div.menu ul li a{
text-decoration: none;
color: #f7ea61;
padding: 0.6em 0.6em;
}
div.menu ul li a:hover{
text-decoration: none;
background-image: url(images/menu_button_hoover.png);
}
div.menu ul li.active a, div#menu ul li.subactive a{
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<div class="header">
</div>
<div class="menu">
<ul>
<li class="main active"><a class="menu" href="/">Start</a></li>
<li class="first"><a class="menu" href="about.html">About</a></li>
<li class="link"><a class="menu" href="contact.html">C...</a></li>
.
.
.
</ul>
</div>
</body>
</html>
|