Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #320013

    Hello!

    I have some quality issues with the logo. especially with the shrinking header. It would be very nice if You could tell me how can I implement the logo in .svg format.

    Thanks a lot!

    Cheers!
    finlando

    #320352

    Hi Finlando!

    Thank you for using Enfold.

    Please try adding this on Quick CSS or custom.css to resize the logo to its actual dimension:

    .logo a img {
    min-width: 485px !important;
    max-height: 68px !important;
    }
    
    .header-scrolled .logo a img {
    min-width: 244px !important;
    max-height: 34px !important;
    }
    

    Cheers!
    Ismael

    #320382

    Hi Ismael!

    Thank You for the advice.

    the logo looks better now in the shrinked version. but now there is a strange behavior of the logo.
    uploading a .svg file to the server and then implementing it in the header would be too comlicated?

    Cheers!
    finlando

    #320494

    Hi!

    You can place your logo in on your server and then add following code to Functions.php file in Appearance > Editor and change the url of the logo

    add_filter('avf_logo','new_logo_url');
    function new_logo_url($use_image){
    $use_image 		= "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
    return $use_image;
    }

    Best regards,
    Yigit

    #321386

    it works now but just for me because i have ftp acces (when i paste the ftp link/path in the logo upload section) . do i have to change the url?
    if yes – can You tell me please how to do that?

    Thanks in advance!

    Cheers!
    finlando

    #321709

    Hi!

    I haven’t tried this but maybe you can use this plugin to enable svg upload: https://wordpress.org/plugins/scalable-vector-graphics-svg/installation/

    Best regards,
    Ismael

    #1231376

    Hi guys, I am trying to get the logo moved a bit up on this page so it fills the space to the top of it better.
    Any ideas?

    Thanks
    Martina

    #1231603

    Hi webdesignphx,

    Please try the following in Quick CSS under Enfold->General Styling:

    span.logo {
        margin-top: -20px;
    }
    
    span.logo img {
        padding: 0;
    }

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.