diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-05-02 12:40:51 +0200 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-05-02 12:40:51 +0200 |
commit | 6a9cd8cd4bb8fd592a00f345c9d1b4ed95497316 (patch) | |
tree | 4cfa07cb1e045ebe183c9ce87d1745a43b6e3674 /view | |
parent | 21e18db75708df68fb8ea803c0e1694accc34623 (diff) | |
download | volse-hubzilla-6a9cd8cd4bb8fd592a00f345c9d1b4ed95497316.tar.gz volse-hubzilla-6a9cd8cd4bb8fd592a00f345c9d1b4ed95497316.tar.bz2 volse-hubzilla-6a9cd8cd4bb8fd592a00f345c9d1b4ed95497316.zip |
diabook-theme: fix footer/impressum
Diffstat (limited to 'view')
-rwxr-xr-x | view/theme/diabook/theme.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php index 07fef7d7c..f9be99759 100755 --- a/view/theme/diabook/theme.php +++ b/view/theme/diabook/theme.php @@ -436,7 +436,9 @@ function scrolltop(){ $(window).scroll(function () { - + var footer_top = $(document).height() - 30; + $("div#footerbox").css("top", footer_top); + var scrollInfo = $(window).scrollTop(); if (scrollInfo <= "900"){ |