<?php bloginfo(‘stylesheet_url’); ?> calls in the style sheet of your active theme. It creates an absolute url to the style sheet when your pages are generated.
In what ever directory wp is installed in, go to wp-content : themes : “active theme folder” : style.css
Or in your http://www.yoursite.com/wp-admin/ to your control panel and go to:
presentation : theme editor
and the css for your active theme will show up in the window for you to edit.
Also if you just go to the blog homepage and view sorce you’ll see the path to your CSS.
<?php bloginfo('template_directory'); ?>
~or~
<?php bloginfo('stylesheet_directory'); ?>
They’re usually the same.
Thanks, Kafkaesqui, that exactly what I was looking for