Hi @arminunruh, there is a mode/trick to have a magnetic scroll (without addon) from id="cover-region" to id="rows-region"?
Thank you! :)
baumiao
Posts
-
Magnetic scroll from cover to rows region -
Smooth scroll with anchor@duezerouno whit this works for me:
<script>
jQuery(document).ready(function(){
jQuery('body').on('click', '.your-class', function(event) {
event.preventDefault();
var id = jQuery(this).attr('href');
jQuery('html, body').animate( { scrollTop: jQuery(id).offset().top }, 750 );
});
})
</script> -
Multilanguage + contact and newsletter formsHi! thanks @arminunruh. Ok I understood, instead it support Contact form 7 and MailChimp form?
-
Project Thumbnails title above the imageHi @arminunruh, there is a mode to position the title above the Project Thumbnails?
Thanks -
Multilanguage + contact and newsletter forms@azn thanks man, I will try it. For newsletter form?
-
Multilanguage + contact and newsletter formsHi @arminunruh can you help me? thanks :)
-
Multilanguage + contact and newsletter formsHi Armin,
there is a solution for multi language ?...I would use Lay theme for a new project for a my client but it must have two language :(Thanks!
UP: I would need also to a contact form and newsletter form, it's possible?
-
florianrougeron.com —Hi @poupoutchak, nice site ;) How do you have integrated marquee text animate?
Cheers!
-
Smooth scroll with anchorHi! @Nathalie I tried your latest code and I added display:none to .js-scrollTo element but it's disappeared... otherwise if I not add display:none it remains always visible.
<script>
jQuery(document).ready(function(){
jQuery(".js-scrollTo").hide();
// fade in and out
jQuery(function () {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 500) {
jQuery('.js-scrollTo').fadeIn();
} else {
jQuery('.js-scrollTo').fadeOut();
}
});
jQuery('body').on('click', '.js-scrollTo', function(event) {
event.preventDefault();
var id = jQuery(this).attr('href');
jQuery('html, body').animate( { scrollTop: jQuery(id).offset().top }, 750 );
});
});
});
</script>.js-scrollTo{display:none !important;}
-
Problem with "intro-image" in mobile versionHello,
we are having problems with the option “intro-image” which doesn’t work (it doesn’t load our splashing yellow page).Could you please help us?
Thank You -
Change the color of body background when hovering on linksHi Everybody,
I put the following script
<script>
jQuery(document).ready(function(){
jQuery("a").hover(function(){
jQuery("body").css('background-color','red');
});
jQuery("a").mouseleave(function(){
jQuery("body").css('background-color','white');
});});
</script>in “Custom <head> content” in order to change the color of body background when hovering on links.
That script only works with “a” links of nav menu, while for the “a” links in the #main-region we have problems.Could you help us resolve them?
It seems there is a conflict between loading of the dynamic content and our jquery event, isn’t it?Thanks
-
Change body bgcolor on hovering a "a" linkHi.
I have put this script in "Custom <head> content" but only the " 'a' links" of nav change the color of body background. The others " 'a' links" in the "#main-region" don't work.Seems there is a problem between the dynamic content loading and my event jquery, right?
<script>
jQuery(document).ready(function(){
jQuery("a").hover(function(){
jQuery("body").css('background-color','red');
});
jQuery("a").mouseleave(function(){
jQuery("body").css('background-color','white');
});});
</script>