gpt4 book ai didi

css - 是否可以在两个商店中为同一主题使用两种不同的 css 样式

转载 作者:行者123 更新时间:2023-11-28 07:02:39 27 4
gpt4 key购买 nike

我们为两个 magento 商店使用相同的主题。

是否可以为两个商店更改不同的 css 样式?它们位于同一根文件夹中,但使用不同的域。

例如,如果我改变导航的颜色,它会改变两个商店的颜色。

有没有好的解释如何做到这一点?

谢谢

最佳答案

在 Magento 中,我们有特定于商店的布局句柄。因此,您可以在 local.xml 中使用相同的句柄来在同一主题中添加不同的 CSS。

<STORE_custom1>
<reference name="head">
<action method="addCss"><stylesheet>css/store_custom.css</stylesheet></action>
</reference>
</STORE_custom1>

<STORE_custom2>
<reference name="head">
<action method="addCss"><stylesheet>css/store_custom2.css</stylesheet></action>
</reference>
</STORE_custom2>

这里 custom1 和 custom2 存储查看代码。

您可以使用以下代码检查所有应用的句柄:

print_r($this->getLayout()->getUpdate()->getHandles());

关于css - 是否可以在两个商店中为同一主题使用两种不同的 css 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33142180/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com