> Could you tell me "how and why" the css file is being pulled in to the
> web page 4 times? Is it the code?
sure, i'd be happy to
here's the code from your page --
<style type="text/css" media="screen, projection">
@import "style.css";
@import url("style.css");
</style>
here, you call in style.css twice
now open style.css, and you see the first two lines are --
/* style.css */
@import url("style.css");
so each time of the two times you call it, it calls itself once more
thank your lucky stars that @import isn't recursive!!
rudy
____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub
________________ http://www.wdvl.com _______________________
You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]