diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2011-10-25 03:26:09 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2011-10-25 03:26:09 +0000 |
| commit | 10c2538289f68a0423801cd259f0c82564a9e970 (patch) | |
| tree | 643e00be19387920a5def0fc26a7dcf2ce2e6aad /themes/minimal/theme.php | |
| parent | 37611dd113c5b5904bf3c2f5477e72b782142efb (diff) | |
| download | webtrees-10c2538289f68a0423801cd259f0c82564a9e970.tar.gz webtrees-10c2538289f68a0423801cd259f0c82564a9e970.tar.bz2 webtrees-10c2538289f68a0423801cd259f0c82564a9e970.zip | |
Fix overflow problem on person_boxes.
Diffstat (limited to 'themes/minimal/theme.php')
| -rw-r--r-- | themes/minimal/theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/minimal/theme.php b/themes/minimal/theme.php index 2868a3e84b..fe22dfeb02 100644 --- a/themes/minimal/theme.php +++ b/themes/minimal/theme.php @@ -153,7 +153,7 @@ $fanChart = array( ); //-- This section defines variables for the pedigree chart -$bwidth = 225; // -- width of boxes on pedigree chart +$bwidth = 240; // -- width of boxes on pedigree chart $bheight = 80; // -- height of boxes on pedigree chart $baseyoffset = 10; // -- position the entire pedigree tree relative to the top of the page $basexoffset = 10; // -- position the entire pedigree tree relative to the left of the page |
