Logo template doesn't work after the size

Hey , How I can see the logo after to have change the size original template logo.

I don’t understand what you’re asking. Please, can you provide more information.

In fact, the logo don’t want display because I changed the size. You can see here: https://www.jakarts.com/

You have your logo set to display in a single pixel: width="1" height="1":

<img src="https://www.jakarts.com/pub/static/version1569077001/frontend/Etheme/shopy/fr_FR/images/logo1.jpg" alt="" width="1" height="1">

Delete those element references or set some values to fix. The exact implementation of this will vary for theme to theme. The first place I’d look is in the Etheme folder for a file called head.phtml or header.phtml.

I can’t be more accurate than that. If you can’t find what you’re after, then I’d check in with Etheme support.

See header.phtml (line 97-101):

<div class="pull-left">
    <!-- logo -->
    <?php echo $this->getChildHtml("logo"); ?>
    <!-- /logo -->
</div>

This lead is telling you that the HTML you’re after that’s responsible for getting the logo is in another file (probably with logo in the name). Your question is extremely specific to your theme - So, it’s unlikely I’ll be able to provide any more details at this stage. Just keep following the trail or contact Etheme if you don’t know what you’re looking for.

Hi,

<referenceBlock name="logo">
    <arguments>
        <argument name="logo_file" xsi:type="string">images/logo.png</argument>
        <argument name="logo_img_width" xsi:type="number">304</argument>
        <argument name="logo_img_height" xsi:type="number">73</argument>
    </arguments>
</referenceBlock>

You can adjust logo size with layout.

Magento_Theme/layout/default.xml

Kind regards,

Thomas