Viewing 4 reply threads
You must be logged in to reply to this topic.
Hello,
I have two questions.
1.) Please have a look at this page (https://goo.gl/nYR8bW). You can see that the h1 is showing up with a animation. How can I remove this animation and only show the h1-box static and normal?
2.) Please look-up the same page with a mobile device (iphone for me) – You see that the h1 is cutted up? How can I fix it?
Thank you and bye
Why is my thread still unsolved? Please don’t wait 2 oder 3 days to check such an simple task.
Hello,
Sorry for the late reply.
1-Please go to file js/main.js and find this function:
function pageHeader(){
"use strict";
var self = $('.header_page.centered');
if(self.length == 0)
return false;
var height = self.height();
self.height(0);
setTimeout(function(){
self.animate({
opacity: 1,
height: height+'px'
}, 800);
}, 600);
edit the value: 800 to 0, save file.
2-Add this code into your custom css box:
@media (max-width:480px){
.header_page.centered h1 { font-size: 20px !important;}
}
Best regards!
Hello,
thank you. Please check the URL again. I changed the JS and the animation is gone. But: I dont want it to drop-down in first place. I want to remove the whole animation not just the time.
Could you help me?
Hello,
Please replace this code:
setTimeout(function(){
self.animate({
opacity: 1,
height: height+'px'
}, 800);
}, 600);
with this:
self.animate({
opacity: 1,
height: height+'px'
}, 0);
Form the file mentioned in my above reply.
Best regards!
You must be logged in to reply to this topic.