edit: the account is now unsuspended, so you can easily view the codes.
Hm.. I don't know why I'm suspended, I'll have to look in to that.
Anyways, I've tried what you said, the first gave this outcome (wrapping the nested list):
Untitled_2.gif 3.04K
34 downloads
When removing the top padding, it gave me this:
Untitled_4.gif 2.92K
33 downloads
I'd hate to clutter this post with the code, but until I can get things figured out with my host, it seems like I have to. (This is the iestyle.css file; the problem area is in the /*content*/ section (near the bottom).)
/*
Resetting browser margins, padding, etc
The reason we do this, is that all browsers
have a default padding etc and so we want
to remove these so that we are starting on
an even playing field with all browsers.
*/
* {
border:0px;
margin:0px;
padding:0px;
}
/* Body style and container */
BODY {
text-align: center;
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9pt;
color: #999966;
background-image: url(img/background.gif);
margin: 0;
}
#container {
width: 433px;
margin: 0 auto;
}
/* Header + Navigation */
#header {
width: 433px;
height: 47px;
background-image: url(img/header.gif);
background-repeat: no-repeat;
}
#transbar {
width: 100%;
height: 5px;
background-image: url(img/trans-bar.png);
}
#nav {
margin-left: 0px;
}
#nav ul {
text-align: left;
margin-top: -4px;
padding: 0px;
list-style-type: none;
}
#nav ul li {
display: inline;
line-height: 26px;
}
#nav ul li a
{
text-decoration: none;
padding: 10px 26px 12px 26px;
background-image: url(img/button-default.png);
background-repeat: repeat-x;
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9px;
color: #FFF;
margin-left: -2px;
}
#nav ul li a:hover
{
background-image: url(img/button-hover.png);
background-repeat: repeat-x;
}
#nav ul li a.current
{
text-decoration: none;
padding: 10px 26px 12px 26px;
background-image: url(img/button-hover.png);
background-repeat: repeat-x;
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9px;
color: #FFF;
margin-left: 0;
}
#nav ul li a.current:hover
{
background-image: url(img/button-hover.png);
background-repeat: repeat-x;
}
#nav #spacer {
width: 10px;
}
#nav ul li.light {
padding-left: 61px;
}
#nav ul li a.light
{
text-decoration: none;
padding: 10px 13px 12px 13px;
background-image: url(img/button-light-default.png);
background-repeat: repeat-x;
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9px;
color: #FFF;
margin-left: -2px;
}
#nav ul li a.light:hover
{
background-image: url(img/button-default.png);
background-repeat: repeat-x;
}
/* Content */
.content {
width: 433px;
margin-top: 15px;
}
.c-header {
background-image: url(img/content-heading.png);
width: 433px;
height: 47px;
}
.c-header h1 {
font-family: "Myriad","Trebsuchet MS","Tahoma","Arial",sans-serif;
font-size: 12px;
color: #AAAA7F;
text-align: left;
padding: 20px 0px 0px 20px;
}
.c-header h1 strong {
font-weight: bold;
color: #8F8F63;
}
.c-text {
width: 409px;
height: 100%;
background-image: url(img/content-background.png);
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9px;
line-height: 15px;
text-align: justify;
color: #999966;
padding: 10px 12px 10px 12px;
}
.c-text a, a:link, a:visited {
color: #CCCC66;
}
.c-text a:hover, a:active {
color: #999966;
}
.c-text ul {
list-style-type: none;
}
.c-text li {
background: url(img/bullet-img.png) left center no-repeat;
padding-left: 20px;
/* padding-top: 2px; */
}
.c-footer {
background-image: url(img/content-footing.png);
width: 433px;
height: 28px;
}
.c-footer2 {
margin-bottom: 10px;
}
.c-footer ul {
margin-left: 150px;
height: 12px;
padding-left: 3px;
}
.c-footer li {
display: inline;
text-decoration: none;
line-height: 12px;
}
.c-footer li a {
background-image: url(img/button-light-default.png);
font-family: "Arial", "Tahoma", sans-serif;
font-size: 9px;
color: #FFF;
text-decoration: none;
padding: 10px 13px 12px 13px;
}
.c-footer a:hover {
background-image: url(img/button-default.png);
}
img {
margin: -5px 10px 0px -5px;
padding: 3px;
background: #FFF;
border:1px solid #efefc6;
}
img:hover {
margin: -5px 10px 0px -5px;
padding: 3px;
background: #FFF;
border:1px solid #efefc6;
}
Edited by cosmouse, 21 August 2007 - 03:17 PM.