Tagged: enfold
Hi,
When I scroll the page, the logo is resized, but it is grainy.
Please see the screenshot: http://i.imgur.com/58oBf2D.png
This happens with version 2.2
What checks can I do?
PS
The site is private but I can send URLs via PM
Thanks
I’m sorry, the problem is not Enfold, is Firefox beta V. 25 on Mac
With Safari and Chrome everything is ok
Hello!
Please js > avia.js, find this code:
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}
Replace it with:
if(st < el_height/1.5)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/1.5;
header.addClass('header-scrolled');
}
This will make the header larger when you scroll down decreasing the graininess of the logo.
Regards,
Ismael
Hi Ismael,
with this change the situation gets worse, now there is an ugly “jerky movement”. Please watch this short video: http://www.youtube.com/watch?v=DUSGnhWuThI
I think the problem is the “rendering” of the logo that does not work on Firefox Beta 25. With other browsers it works.
One last question, you can completely disable resizing Logo?
Thanks
Hi!
Yes, open up enfold/js/avia.js and delete following code
// decreases header size when user scrolls down
avia_header_size();
Cheers!
Peter