1. Making the Navigation Menu Bar in solid color to avoid overlapping texts when the Sticky Menu featureis invoked; and
/* Change nav menu background and link color */
#top #access .menu li a,
#top #access{
background:#fff;
color:#000;
}
2. A shaded button with “^” sign at lower right to allow Scrolling to Top of a web page for a reader’s convenience, when is a webpage becomes too long?
https://gist.github.com/tenman/9361514
$nobita_external_link_value =<<<SCRIPT
jQuery(function() {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 100) {
jQuery('#access').css({'position':'fixed','top':'0','z-index':'999','margin':'0'});
jQuery('.logged-in #access').css({'position':'fixed','top':'29px','z-index':'999','margin':'0'});
} else {
jQuery('#access').css({'position':'static'});
jQuery('.logged-in #access').css({'position':'static'});
}
});
});
SCRIPT;
Change below
$nobita_external_link_value =<<<SCRIPT
jQuery(function() {
var topBtn = jQuery("#page-top");
topBtn.hide();
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 100) {
topBtn.fadeIn();
jQuery('#access').css({'position':'fixed','top':'0','z-index':'999','margin':'0'});
jQuery('.logged-in #access').css({'position':'fixed','top':'29px','z-index':'999','margin':'0'});
} else {
topBtn.fadeOut();
jQuery('#access').css({'position':'static'});
jQuery('.logged-in #access').css({'position':'static'});
}
});
topBtn.click(function () {
jQuery("body,html").animate({
scrollTop: 0}, 500);
return false;
});
});
SCRIPT;
and add to footer.php first line (<?php
before ) below
<p id="page-top" style="position:fixed;left:3px;bottom:0"><a href="#"><img src="https://tenman.info/labo/snip/wp-content/themes/raindrops/images/previous.png" style="-webkit-transform:rotate( 90deg );-moz-transform:rotate( 90deg );-ms-transform:rotate( 90deg );transform:rotate( 90deg );" alt="page top link" /></a></p>
It maybe shows link to top link at left bottom