compass hand in hand with wordpress

I’ve got a dilemma. Compass is creating the output file screen.css(and ie, print) but WordPress requires the name style.css as the default theme stylesheet. How can I solve this? Can I change the compass default ouput name, or can I change WordPress defaul “input” stylesheet scource?

— Update —

Read More

I did solve the problem. But not naturally. What you can do is that you temporarily create a style.css in your theme directory with the required information. After that you can customize the stylesheet link href in the header.php just as usual. So the style.css in the root theme directory is just “fake”.

Related posts

Leave a Reply

1 comment

  1. You can change the path to the css file in header.php

    change :

    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

    to

    <link rel="stylesheet" type="text/css" media="all" href="http://www.yoursite.com/path/to/style/sheet.css" />