Hi,
In order to change the style of ‘Loading’ message, go to file: modules/mod_jak2filter/assets/css/style.css find for
#jak2-loading {
background: #91d0f2 url("ajax-loading.gif") no-repeat scroll center bottom;
border-radius: 3px;
color: #fff;
display: block;
font-weight: bold;
height: 50px;
left: 50%;
margin-left: -200px;
padding: 10px 0;
position: fixed;
text-align: center;
top: 50px;
width: 400px;
z-index: 999;
}
copy it to your CSS file, and change the style as you want for color, font size or background.
is it possible to adjust the automatic "roll-up" function that appears when the result is displayed?
Go to file: modules/mod_jak2filter/assets/js/jak2filter.js
find for:
jQuery('html, body').animate({scrollTop: container.offset().top}, 1000);
It’s the code for animate Scroll, you can custom to any animate you want.