Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29527

    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

    #140896

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Disable logo resizing’ is closed to new replies.