I understand that in order to link a stylesheet to my site I have to include the following in my page template:
[-- INCLUDE style.css PROCESS --]
But is there any way to link my stylesheet directly using:
<LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen>
or
@import url(styles.css);
One reason I ask is because I notice even though my stylesheet is "external" per say, Shopsite generates my entire stylesheet on every single page header on my site.
In other words, if you "View" the Source Code on any page at http://www.mulberrystreetgifts.com you will see the stylesheet in the header. This pretty much defeats the purpose of having external styles to begin with.
Thanks