David Dorward wrote:
> CEFM wrote:
>
>> Is there a way as an html attrabute or css attrabute to remove the
>> indent in an unorderd list?
>
> No, but there are CSS properties: margin and padding.
And if you set margin or padding on an unordered list, make sure you set
them both, and set both padding and margin on the list items too.
UL {
padding: something;
margin: something;
}
UL LI {
padding: something;
margin: something;
}
Otherwise you will have a bunch of problems getting it to work
cross-browser.
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~
http://tobyinkster.co.uk/contact