queue_css question

How do you access a different location for a css file using the queue_css function? It defaults to the css folder, but I’m trying to access a file located in the common folder. I thought it would be something like <?php queue_css('filename', $media="screen", $dir="..\common\mycssfolder\"); ?> but I’m not sure of the correct syntax.

PHP doesn't support named parameters like you've used there, you always have to pass parameters by order only.

So, your call should look like:

queue_css('filename', 'screen', false, 'common/mycssfolder');

Awesome, thanks.