I am in the process of integrating a WP blog into an existing website. I have a few questions as to proper directory structure and how to add multiple css sheets to one page. I've reviewed the Codex and forum, and I would appreciate any help.
First Q: My website currently imports multiple css style sheets by linking (<link rel="stylesheet" type="text/css" title="Import Style Sheet" href="css/import.css">) to a style sheet that imports multiple css sheets via the @import url(xyz.css). Is it possible to do the same in WordPress? If so, what is the proper way to do that?
Second Q: My WP blog is installed in a subdirectory of my website (http://www.example.com/blog). Do all of my blog related files (images, css style sheets, java script, etc.) need to be contained in the same subdirectory as my blog, or can I link to them with absolute paths? For example, all of the images for my website are contained at http://www.example.com/images. Can I use the same images in my WordPress blog (via absolute paths) or do I need to make a copy of the folder and move it into a folder within my blog subdirectory? If I can use absolute paths, can you also show me the correct format to do that?
Thank you in advance for any help.