Hi,
Is there a way to completely disable the logo resizing function? My logo has sharp edges and it seems to go fuzzy around the edges – it’s especially noticeable on hi-res displays.
Many thanks,
Rob
Hi,
In your WordPress theme directory please go to Enfold > Js and open Avia.js file and find following code
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}
and change it to
if(st < el_height)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height;
header.addClass('header-scrolled');
}
Regards,
Yigit