igal14 0 Posted December 24, 2012 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? Share this post Link to post Share on other sites
yaniv14 172 Posted December 25, 2012 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) Share this post Link to post Share on other sites
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