css - compass hand in hand with wordpress -
i've got dilemma. compass creating output file screen.css
(and ie, print) wordpress requires name style.css
default theme stylesheet. how can solve this? can change compass default ouput name, or can change wordpress defaul "input" stylesheet scource?
-- update --
i did solve problem. not naturally. can temporarily create style.css in theme directory required information. after can customize stylesheet link href in header.php usual. style.css in root theme directory "fake".
you can change path 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" />
Comments
Post a Comment