Zend Framework problem with adding CSS files
- by priktop
Hi,
I have a small problem when loading CSS files with the Zend Framework.
This is my code:
<?php echo $this->headLink()->prependStylesheet($this->baseUrl().'/css/reset.css'); ?>
<?php echo $this->headLink()->prependStylesheet($this->baseUrl().'/css/main.css'); ?>
When i open the page in my browser, it puts the main before the reset. This way i get my page unstyled because it gets reset by the reset.css.
Any suggestions? Thanks.