diff --git a/manual/documentation.php b/manual/documentation.php
index 131b76c10..0e2bce560 100644
--- a/manual/documentation.php
+++ b/manual/documentation.php
@@ -442,21 +442,25 @@ $menu = array("Getting started" =>
+
\n";
foreach($menu as $title => $titles) {
- print $i.". ".$title." \n";
+ print "" . $i . ". ".$title."\n";
+ print "";
$i2 = 1;
foreach($titles as $k => $t) {
$e = "$i.".$i2."";
if(is_array($t)) {
- print "- ".$e." ".$k."
\n";
+ print " - ".$e." ".$k."
- \n";
$i3 = 1;
+ print "
";
foreach($t as $k2 => $v2) {
$str = "";
if( ! file_exists("docs/$title - $k - $v2.php")) {
@@ -472,9 +476,11 @@ $menu = array("Getting started" =>
}
$e = implode(".",array($i,$i2,$i3));
- print "- ".$e." ".$v2."$str
\n";
+ print " - ".$e." ".$v2."$str
\n";
$i3++;
}
+ print " ";
+
} else {
$str = "";
if( ! file_exists("docs/$title - $t.php")) {
@@ -487,12 +493,16 @@ $menu = array("Getting started" =>
$str .= " [ code ] ";
touch("codes/$title - $t.php");
}
- print "- ".$e." ".$t."$str
\n";
+ print " - ".$e." ".$t."$str
\n";
}
$i2++;
+
}
$i++;
+ print " ";
}
+ print "\n";
+
} else {
$i = 1;
$ex = explode(".",$_REQUEST["index"]);
diff --git a/manual/styles/basic.css b/manual/styles/basic.css
index 03a7e3684..c44d01207 100644
--- a/manual/styles/basic.css
+++ b/manual/styles/basic.css
@@ -1,5 +1,5 @@
body {
-margin: 10,0,0,0;
+margin:10px auto 0px auto;
font-family: Verdana, Arial, Helvetica;
text-decoration: none;
}
diff --git a/manual/top.php b/manual/top.php
index 17f8ec567..29be655da 100644
--- a/manual/top.php
+++ b/manual/top.php
@@ -1,7 +1,10 @@
+
+
+
+Doctrine ORM Framework
+
-
+
|