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

    Hallo,
    wie bekomm ich mein SVG-Logo in den Header?
    Habe das Logo bereits als SVG hochladen können

    Viele Grüße
    Manuel

    #879980

    Enfold > Theme Optionen > bei Logo auf Upload klicken > SVG Datei auswählen und fertig.

    Gruß
    MNL

    #880147

    Hallo MNL,
    das habe ich gemacht, nur wird mir das Logo nicht angezeigt. Zumindest am Desktop nicht.
    Beim Smartphone und Tablet wird das Logo angezeigt, allerdings zentriert – obwohl ich linksbündig eingestellt habe

    Gruß
    Manuel

    #880460

    Hi Manuel,

    Credentials did not work for me. Could you please update the credentials?

    Here is a thread for you to consider
    https://kriesi.at/support/topic/how-to-use-svg-as-logo/

    Best regards,
    Victoria

    #880464

    It works now?

    #881196

    Hi ManuelPa,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .logo img {
          min-width: 300px;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1289136

    I added following code:

    add_filter('upload_mimes', 'enfold_extra_mime_types');
    function enfold_extra_mime_types_extra_mime_types($mimes) {
    	$extraMIME = array(
    		'svg' => 'image/svg+xml'
    	);
    	return array_merge($mimes,$extraMIME);
    }
    add_filter('avf_logo_dimension','enfold_logodimention');
    function enfold_logodimention($dimension) { return; }

    Upload of SVG is working and Logo is shown correctly.

    #1289562

    Hi BlutVampir,

    Great, I’m glad that you got it working, and thanks for sharing your solution :-)

    Best regards,
    Rikard

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