summaryrefslogtreecommitdiff
path: root/themes/minimal/templates
diff options
context:
space:
mode:
authorNigel Osborne <kiwi3685@me.com>2011-10-25 03:26:09 +0000
committerNigel Osborne <kiwi3685@me.com>2011-10-25 03:26:09 +0000
commit10c2538289f68a0423801cd259f0c82564a9e970 (patch)
tree643e00be19387920a5def0fc26a7dcf2ce2e6aad /themes/minimal/templates
parent37611dd113c5b5904bf3c2f5477e72b782142efb (diff)
downloadwebtrees-10c2538289f68a0423801cd259f0c82564a9e970.tar.gz
webtrees-10c2538289f68a0423801cd259f0c82564a9e970.tar.bz2
webtrees-10c2538289f68a0423801cd259f0c82564a9e970.zip
Fix overflow problem on person_boxes.
Diffstat (limited to 'themes/minimal/templates')
-rw-r--r--themes/minimal/templates/personbox_template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/minimal/templates/personbox_template.php b/themes/minimal/templates/personbox_template.php
index 1cb757799a..de98a01a96 100644
--- a/themes/minimal/templates/personbox_template.php
+++ b/themes/minimal/templates/personbox_template.php
@@ -50,7 +50,7 @@ if (!defined('WT_WEBTREES')) {
<span class="name<?php echo $style; ?>"> <?php echo $genderImage; ?></span>
<?php echo $showid; ?> </a>
<div id="fontdef-<?php echo $boxID; ?>" class="details<?php echo $style; ?>">
- <div id="inout2-<?php echo $boxID; ?>" style="display: block;"><?php echo $BirthDeath; ?></div>
+ <div id="inout2-<?php echo $boxID; ?>" style="display: block; overflow:hidden; max-height: <?php echo $bheight-20; ?>px;"><?php echo $BirthDeath; ?></div>
</div>
<div id="inout-<?php echo $boxID; ?>" style="display: none;">
<div id="LOADING-inout-<?php echo $boxID; ?>"><?php echo WT_I18N::translate('Loading...'); ?></div>