I have this site – http://ihr-hochzeits-fotograf.at and for some reason the scroll on mobile devices is really slow, and strangely on the blog page it is ok. I am sure it’s not something too complicated. Could someone give me a few tips or help me resolve the problem for a fee ofc? Thanks.
I didn’t do a deep look through the site, but it seems that there’s a JS which handles the scroll event. Just try searching at your JS files for ”.scroll” and find the piece of code that does it.
Nice design btw!
Heya! I still need help with that! Could somebody help me for let’s say $40? Thanks in advance.
Try seeing how it behaves when removing that socialmodal, or the Twitter widget code.
Also, for the form input clearing on click, you have a lot of redundant and slow jQuery. Use something like this instead:
var el = $('input[type=text], textarea');
el.focus(function(e) {
if (e.target.value == e.target.defaultValue)
e.target.value = '';
});
el.blur(function(e) {
if (e.target.value == '')
e.target.value = e.target.defaultValue;
});Hello, You can contact me from my portfolio website http://caterinloper.com/ for your work. Regards Caterin
