hatbocs
New Member
- Messages
- 62
- Reaction score
- 0
- Points
- 0
I need some help with getting IE to display my lists right.
Here's the code I have for them:
Formatting
Text formatting
Here is IE (bad):

Here is Firefox (good):

Here's the code I have for them:
Formatting
Code:
.postbody ul {
margin: 8px;
background-color: #444;
list-style-position: inside;
}
.postbody ul li {
padding: 1px;
margin: 0px;
}
.postbody ol {
margin: 8px;
background-color: #444;
list-style-position: inside;
}
.postbody ol li {
padding: 1px;
margin: 0px;
}
Code:
.postbody ul li {
color: #fff;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.5em;
list-style: url(images/bullet.gif);
}
.postbody ul li a {
color: #faa92e;
text-decoration: none;
border-bottom: dotted #aaa 1px;
}
.postbody ul li a:hover {
color: #fff;
text-decoration: none;
border-bottom: dotted #faa92e 1px;
}
.postbody ol li {
color: #ccc;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.5em;
}
.postbody ol li a {
color: #faa92e;
text-decoration: none;
border-bottom: dotted #aaa 1px;
}
.postbody ol li a:hover {
color: #fff;
text-decoration: none;
border-bottom: dotted #faa92e 1px;
}
Here is IE (bad):

Here is Firefox (good):

Last edited: