I have a list of common styles in Controller init ():
$this->view->headLink()->setStylesheet('/style/style.css'); $this->view->headLink()->appendStylesheet('/style/style2.css'); $this->view->headLink()->appendStylesheet('/style/style3.css'); $this->view->headLink()->appendStylesheet('/style/forms.css'); $this->view->headLink()->appendStylesheet('/style/ie_patches.css','all','lte IE 7');
what I need is a way to remove one of the stylesheets from the stack later in one of the actions of this controller.
Appreciate your help, sorry my English
Zippp source share