替换twig / symfony模板中的图像:无法正常工作

时间:2017-05-11 06:35:18

标签: symfony twig

所以我想更换公司徽标。这些是我试过的:

  1. 将新图像复制到images文件夹并更改img标记以引用新徽标。

  2. 使新徽标文件名与旧文件名相同。删除旧徽标并将新徽标放在其中

  3. 我的问题是,当我更改上面的两件事时,新徽标会像放大一样显示。由于宽度和高度参数在img标签中使用,这很奇怪。

    任何想法我可能做错了什么?

    一些信息:

    这是枝条中引用公司徽标的html。这是我开始编辑之前的那个。

    <div class="navbar-header">
        <a class="navbar-brand" href="http://www.mycompany.com" title="Buy from us" rel="home" target="_blank">{% image "@AppBundle/Resources/public/images/our-company-logo.png" %}<img src="{{ asset_url }}" width="214" height="45" alt="Flinders logo">{% endimage %}</a>
    </div>
    

    注释:

    1. 我在开发模式下运行symfony

    2. 我清除了我的symfony缓存

    3. 我倾销了我的资产(php app / console assetic:dump),以防它有所作为。

1 个答案:

答案 0 :(得分:0)

为什么不在nav-brand css类中使用它作为背景图像,并使用背景位置封面或类似的属性?