• rodrigomc2000

    (@rodrigomc2000)


    Hi,

    How can we increase the border-radius from boxed layout from top and bootom?

    We try via css change from 6px to 25px but not work, maybe because you guys add it inline!

    Also, there’s anyway to set a class in the logo?

    Thanks

Viewing 1 replies (of 1 total)
  • Hi.
    You can add attributes to your logo with this hook:

    function timersys_header_logo_attr($attr) {
    
    	$attr['style'] = 'max-width:100%; height: 500px; float: none;';
    
    	return $attr;	
    }
    add_filter('mailtpl/templates/header_logo_attr', 'timersys_header_logo_attr');

    To modify the CSS of all the content, maybe you should view : admin/templates/partials/header.php

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘border radius from boxed layout’ is closed to new replies.