在 Magento 中放置徽标

Place a logo in Magento

我正在研究 Magento 的自定义模块,我想在配置->销售->支付方式->模块中放置一个徽标。这是我要加logo的地方

我尝试使用 CDATA,但未能正确实施。有人可以帮我吗?提供一个代码,我必须在 system.xml 文件中添加一个标签标签。

<newgengiropay translate="label comment" module="newgengiropay">
    <label>
        <![CDATA[
            <div style="position:absolute;">
                <img id="newgengiropay_block" src="" alt="" border="0" />
                <span style="display:inline;position:absolute;right:0px; ">Giropay</span>
            </div>
            &nbsp;
            <script>$('newgengiropay_block').src = SKIN_URL + "images/newgengiropay/newgen.png";</script>
        ]]>
    </label>
</newgengiropay>