I'm trying to add my logo to the top navbar like this:
I modified the xml file "addons\web\static\src\xml\menu.xml" and added my div inside the header:
<header t-name="Menu">
<nav class="o_main_navbar">
<ul class="o_menu_apps"/>
<div style="height: 100%;display: block;float: left;margin-right: 15px;margin-left: 15px;">
<img src="https://www.clubsportive.nl/wp-content/uploads/2018/12/logo-example.jpg" height=100%/>
</div>
<a class="o_menu_brand" role="button"/>
<ul class="o_menu_sections" role="menu"/>
<ul class="o_menu_systray" role="menu"/>
</nav>
</header>
But it breaks whole odoo. I see only white screen.
In console I have errors like this:
https://i.imgur.com/MSPCNni.png
How do I do this?