Welche Elemente hast du damit formatiert, und was hast du mit dem padding gemacht?
Also NOCHMAL der Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Verzeichnisse und Menüs</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
ul#container li {
width: 210px;
list-style-type: none;
display: block;
}
ul#container li ul li {
padding: 0 0 0 30px;
/**************************************
margin-left: ?; // gibt es eine professionelleren Weg als margin-left: -xy ?
***************************************/
}
-->
</style></head>
<body>
<h1>Verzeichnisse und Menüs</h1>
<ul id="container">
<li>1. Titel
<ul>
<li>1.1 Untertitel 1</li>
<li>1.2 Untertitel 2</li>
<li>1.3 Untertitel 3</li>
</ul>
</li>
<li>2. Titel</li>
<li>3. Titel</li>
</ul>
</body>
</html>
Danke,
Mousse Tafa