Forum Moderators: not2easy
<ul>
<li><span style="color:#7f96ad;">Some text</span></li>
<li><span style="color:#7f96ad;">Some text</span></li>
etc..etc.
</ul>
External CSS:
ul {
list-style-type: disc;
color: #2364cd;
}
li {
font-size: 1.0em;
text-align: left;
line-height: 1.2em;
margin-top: 0em;
margin-bottom: 0.1em;
}
#main {
position: absolute;
top: 0px; left: 180px;
width: 657px;
height: auto;
margin: 0;
padding: 0;
)
#offset {
margin: 0 0 0 90px;
padding: 0 40px 0 0;
}
The bulletted list is within the #offset div. The 90px left margin is to give an offset from a 180px wide div containing navigation links. Any clues there?...
No not really I still have it working OK, even with the new info.. except (and this just may be a typo) your closing bracket on the #main rule is ..not.. a curly one "}"
.. normally it's only floats in IE that cause bullets not to appear.. well they're there they're just hidden under the floated content (way to the left) is your list content still margined?
have you validated both the HTML and CSS, and if so can you post just the code for the affected areas
Suzy
[added]
here's the test code I have so far.. that is working..
<style type="text/css" media="screen">
ul {
list-style-type: disc;
color: #2364cd;
}li {
font-size: 1.0em;
text-align: left;
line-height: 1.2em;
margin-top: 0em;
margin-bottom: 0.1em;
}#main {
position: absolute;
top: 0px; left: 180px;
width: 657px;
height: auto;
margin: 0;
padding: 0;
background: #ffc;
}#offset {
margin: 0 0 0 90px;
padding: 0 40px 0 0;
}
</style>
</head>
<body>
<div id="main"><div id="offset">
<ul>
<li><span style="color:#7f96ad;">Some text</span></li>
<li><span style="color:#7f96ad;">Some text</span></li>
</ul>
</div></div>
</body></html>
You see, I work on a Mac and don't have a PC with IE6 to hand to test. I therefore have to upload my changes and then phone a friend to check. Frustrating and long-winded to say the least!
Well, after a bout of removing and adding divs and adjusting this and that - none of which helped - I finally ended up back at square one with things as they were - or so I thought. And then my friend called to say the bullets had appeared!
So the problem has been solved, but we're none the wiser!
Thanks again.