View Full Version : changing bullet indent


J E P P O
05-07-2003, 09:09 AM
hi,

I was just adding a bulletted list to my page and I was wondering if there was anyway to reduce or completely wipe out the indent.

Thanks!!!!!!!AAA whole lot

pb&j
05-07-2003, 02:35 PM
something like this example?

<html>
<head>
<style type="text/css">
/* margin values are top right bottom left */
.foo {margin:0px 0px 0px 15px;}
</style>
</head>
<body>
some text here
<ul class="foo">
<li>first item</li>
<li>second item</li>
</ul>
more text here
</body>
</html>

J E P P O
05-08-2003, 08:43 AM
hey, it worked, thanks so much! I wouldn't have thought of that for a million bucks! Thanks