0

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
2
  • check in skin folder in extension folder and go to same path in magento folder and remove it..... Commented Nov 16, 2016 at 13:22
  • Thanks @BabyinMagento for your reply. Actually I am looking for the XML file where this CSS file included. Commented Nov 16, 2016 at 13:23

1 Answer 1

0

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

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.