I want to assign different css rules to some pages like product_info, address_book, etc,. I added some css codes to the php files of those pages which start with tpl at the beginning of their names. However, this is a time consuming task and I would like to know if it is possible to create a css file (or multiple files) and link it to the pages that I want to change the css properties of.
Secondly, is it OK to add css rules to the pages in the 'Define Pages editor' without wrapping the code with html code? For instance, would it be just fine to add a code like;
<style type="text/css">
.centerColumn {
background: #fff;
}
</style>
OR do I have put opening and closing html tags at both ends? This question also applies to the first question above.
Any help appreciated..



