hi, I'm porting a css/xhtml template to wp theme. I'm having trouble with calling its stylesheet because it has 3 stylesheets, 2 which contains all the css properties and 1 (style.css) which calls those 2. like this:
/* theme screen stylesheets */
/* import stylesheets and hide from ie/mac \*/
@import url("reset.css");
@import url("FreshPick.css");
/* end import/hide */
I used this line <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> it seems to work but not everything appeared as expected. it doesn't show images called inside css code.