igal14 Posted December 24, 2012 Share Posted December 24, 2012 I have rtl.css and global.css i want prestashop to ignore all other css files [moudles] if rtl.css is being use. how can i do this? Link to comment Share on other sites More sharing options...
yaniv14 Posted December 25, 2012 Share Posted December 25, 2012 (edited) most modules load the css from the module php file, something like this: public function hookHeader($params) { $this->context->controller->addCSS(($this->_path).'module_name.css', 'all'); } to make it simple just overwrite the old values in the rtl.css. Edited December 25, 2012 by yaniv14 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now