diff --git a/js/script.js b/js/script.js index e95bdb0..9bf14ed 100644 --- a/js/script.js +++ b/js/script.js @@ -213,7 +213,7 @@ if (/MSIE [5-9]/.test(navigator.userAgent)) { if ($scope.projLast === 10) { $scope.projLast = 1000; showMore = true; - $(".buttonMore").css({ position: "fixed", bottom: 0 }); + $(".buttonMore").css({ position: "absolute", bottom: 0 }); } else { $("html, body").animate({ scrollTop: 380 }, 100); $scope.projLast = 10; @@ -352,7 +352,7 @@ if (/MSIE [5-9]/.test(navigator.userAgent)) { if (bottomScreen > $("#featuredOrg").offset().top + 25) { $(".buttonLess").css({ position: "absolute", bottom: -50 }); } else { - $(".buttonLess").css({ position: "fixed", bottom: 0 }); + $(".buttonLess").css({ position: "absolute", bottom: 0 }); } } }; diff --git a/stylesheets/app.css b/stylesheets/app.css index 056ecde..56baf8e 100644 --- a/stylesheets/app.css +++ b/stylesheets/app.css @@ -7939,7 +7939,7 @@ form.custom .custom.dropdown.open.medium ul { } /* line 683, sass/app.scss */ .main .buttonLess { - position: fixed; + position: absolute; bottom: 0px; left: 0; }