Hi, all. I'm just learning CSS and doing ok with it but am very stumped on this.
I can't seem to get my list to show a 'list-style-image' when I have the list in a horizontal configuration. I can place a background image, but that introduces it's own formatting issues. I know the link to the image is correct.
Thoughts? Thanks for your time. -BN
Code:
----------------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
#folderowners{
font-size: xx-small;
font-weight: bold;
text-align: left;
background: #b4b4b4;
border: 1px solid #000000;
clear: both;
margin: 0 0 5px 0;
padding: 1px 0 5px 2px;
}
#folderowners ul li {
display: inline;
}
#folderowners ul li a{
padding: .2em 1em;
}
#folderowners ul{
clear: both;
text-align: left;
margin: 0;
padding: 0;
}
#folderowners li{
list-style: none;
list-style-image: url(../../images/mail_write_16.gif);
}
</style>
</head>
<body>
<div id="folderowners">
Folder Owner(s):
<ul>
<li><a href="mailto:xxx@xxx.xxx">O'Brian, Mary</a></li>
<li><a href="mailto:xxx@xxx.xxx">Welch, Bob</a></li>
<li><a href="mailto:xxx@xxx.xxx">Nicholas, Brent</a></li>
</ul>
</div>
</body>
</html>
----------------------------------------------------



Reply With Quote
)



Bookmarks