diff options
| author | makitso <makitso@gmail.com> | 2017-06-22 16:06:34 -0500 |
|---|---|---|
| committer | makitso <makitso@gmail.com> | 2017-06-22 16:06:34 -0500 |
| commit | d20068e26e51e56f62a168aca25c8653612795cc (patch) | |
| tree | 165b13d75827bdf953548a591a6f669e33d071d7 /app | |
| parent | 7750595ec80ea6eab22c2fc0584f075acf8aa814 (diff) | |
| download | webtrees-d20068e26e51e56f62a168aca25c8653612795cc.tar.gz webtrees-d20068e26e51e56f62a168aca25c8653612795cc.tar.bz2 webtrees-d20068e26e51e56f62a168aca25c8653612795cc.zip | |
Ancestors Chart (Booklet) a few more fixes
Diffstat (limited to 'app')
| -rw-r--r-- | app/Functions/FunctionsCharts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Functions/FunctionsCharts.php b/app/Functions/FunctionsCharts.php index e6ad8fc6b1..a54cf910ee 100644 --- a/app/Functions/FunctionsCharts.php +++ b/app/Functions/FunctionsCharts.php @@ -461,13 +461,13 @@ class FunctionsCharts { if ($kids) { echo '<table cellspacing="0" cellpadding="0" border="0" ><tr>'; if ($kids > 1) { - echo '<td rowspan="', $kids, '"><img width="3px" height="', (($bheight + 9) * ($kids - 1)), 'px" src="', Theme::theme()->parameter('image-vline'), '"></td>'; + echo '<td rowspan="', $kids, '"><img width="3px" height="', (($bheight) * ($kids -1)), 'px" src="', Theme::theme()->parameter('image-vline'), '"></td>'; } $ctkids = count($fchildren); $i = 1; foreach ($fchildren as $fchil) { if ($i == 1) { - echo '<td><img width="10px" height="3px" style="vertical-align:top"'; + echo '<td><img width="10px" height="3px" style="vertical-align:middle"'; } else { echo '<td><img width="10px" height="3px"'; } |
