I am using theme254k Package of default Theme of Magento 1.8.1.0. I installed an extension. This extension added a CSS file. I would like to remove this CSS file. How can I do that ?
asked Nov 16, 2016 at 13:20
abu abu
7443 gold badges15 silver badges39 bronze badges
-
check in skin folder in extension folder and go to same path in magento folder and remove it.....Baby in Magento– Baby in Magento2016年11月16日 13:22:46 +00:00Commented Nov 16, 2016 at 13:22
-
Thanks @BabyinMagento for your reply. Actually I am looking for the XML file where this CSS file included.abu abu– abu abu2016年11月16日 13:23:52 +00:00Commented Nov 16, 2016 at 13:23
1 Answer 1
go to app/design/frontend/base or default/layout/modulexml.xml
remove the code add
<action method="addCss"><stylesheet>yourcss.css</stylesheet>
comment that code
You can find the layout file app/code/local or community/spacename/modulename/etc/config.xml will defined in frontend> layout
<frontend>
<layout>
<updates>
<test>
<file>test.xml</file> // here will be layout file name
</test>
</updates>
</layout>
</frontend>
answered Nov 16, 2016 at 13:24
Qaisar Satti
32.6k18 gold badges88 silver badges138 bronze badges
default