Javascript 如何增加网站odoo 13中的徽标尺寸?

Javascript 如何增加网站odoo 13中的徽标尺寸?,javascript,html,xml,odoo,Javascript,Html,Xml,Odoo,我试图在odoo13中增加网站主页上的徽标大小,但在odoo13版本中,显示徽标的代码不同,如何在该代码中增加徽标?它试图把 <"style="max-width: 200px; max-height: 150px;"/> <?xml version="1.0"?> <data inherit_id="website.layout" name="Show Logo"> <xpath expr="//header//a[hasclass('

我试图在
odoo13
中增加网站主页上的徽标大小,但在
odoo13
版本中,显示徽标的代码不同,如何在该代码中增加徽标?它试图把

<"style="max-width: 200px; max-height: 150px;"/>

<?xml version="1.0"?>

<data inherit_id="website.layout" name="Show Logo">

    <xpath expr="//header//a[hasclass('navbar-brand')]" position="replace">

        <a href="/" class="navbar-brand logo">

            <span t-field="website.logo" t-options="{'widget': 'image'}" role="img" t-att-aria-label="'Logo of %s' % website.name"  t-att-title="website.name" />

        </a>

    </xpath>

</data>