• Resolved nicolaifriis

    (@nicolaifriis)


    Hey there,

    Would be awesome if you could add support for width / height attributes. That way we would be able to upload logos in higher resolution for better showing results. 🙂

    Other than that, really great plugin!

Viewing 1 replies (of 1 total)
  • Hi.
    You can add attributes to the header logo using this hook.

    function timersys_logo_attrs( $attrs = [] ) {
    	
    	$attrs['width'] = '50px';
    	$attrs['height'] = '50px';
    
    	return $attrs;
    }
    add_filter('mailtpl/templates/header_logo_attr', 'timersys_logo_attrs', 10, 1);

    Regards

Viewing 1 replies (of 1 total)

The topic ‘Feature request: Logo width / height attribute’ is closed to new replies.