Go To Top button
Posted: Fri May 22, 2020 5:10 pm
I noticed that the 'Go to Top' button is not in front of the topmenu (at least with a pagesize of 95%) and that there is an error message in the log.
To correct both issues, you can do the following:
Open IndexDesktop.php
Change line 582 from:
to:
And line 905 from:
to:
Greetings,
Gerard
To correct both issues, you can do the following:
Open IndexDesktop.php
Change line 582 from:
Code: Select all
<a href="" id="gotop" style="display: none;">Code: Select all
<a href="" id="gotop" style="display: none;z-index: 100;">Code: Select all
$("#gotop").scrollToTop();Code: Select all
$("#gotop").scrollTop();Gerard