If my Yii app is located in this directory http://localhost/public_html/mywebapp/
how do I tell my code below that I wanted it to automatically be set under the dir above?
<?php
/**
* Extending CLinkPager so that we can give it a custom css file
*/
class LinkPager extends CLinkPager
{
public $cssFile = '/css/pager.css';
}

Help













