Topic: CSS Question for Paul
I am looking for a way to keep my custom forum styles separate from the stock punBB styles. I have read other posts where it has been recommended that any custom styles should be put at the end of the style sheet(s) for easy reference. I have no problem doing that, but when I predict that I will be using this excellent forum software on many of the sites that I have either already completed, or are in the planning stages. I am worried that when upgrades are applied, (especially if I am not doing the upgrade), that the style mods I have made will be lost or forgotten. Do you oppose, or recommend making a separate style sheet for all custom or modded styles, that can be imported like base.css and *_cs.css files are?
I am just looking for the best and easiest way of keeping my custom styles intact. Fully realizing that best and easiest is not always the same solution. I have already run into a problem where a client has found that there was an upgrade available and applied it before I had a chance to warn him. Luckily I had a backup. My thoughts are that if they by chance happen to overwrite the styles during an upgrade, that all I need to do is tell them to open the main CSS file and add:
/* Import the custom styles*/
@import url(imports/custom.css);
below
/* Import the colour scheme */
@import url(imports/Oxygen_cs.css);
Your thoughts?