Not sure what I'm doing wrong here, but it seems that the framework is only able to find the style.css on my index actions on every controller. I'm calling it from the layout.phtml like this:
$this->headLink()->appendStylesheet('css/styles.css');
So when I go to project.local/account, I find the styles. If I go to project.local/account/action there are no styles...and actually if I go to project.local/account/index...there are no styles. So... it's a bit of a weird error, or at least it is for a n00b
Edit: When I open the code console on firefox and try to follow the css/styles.css I find the following error message:
<pre>#0 /home/fiodorovich/library/ZendFramework/library/Zend/Controller/Action.php(515): Zend_Controller_Action->__call('cssAction', Array)
#1/home/fiodorovich/library/ZendFramework/library/Zend/Controller/Dispatcher/Standard.php(295): Zend_Controller_Action->dispatch('cssAction')
#2 /home/fiodorovich/library/ZendFramework/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#3 /home/fiodorovich/library/ZendFramework/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#4 /home/fiodorovich/library/ZendFramework/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#5 /home/fiodorovich/public_html/gisele/public/index.php(26): Zend_Application->run()
#6 {main} </pre>
<h3>Request Parameters:</h3>
<pre>array (
'controller' => 'gisele',
'action' => 'css',
'module' => 'default',
) </pre>