I use a general CSS for all my pages which is accessed normally via a link. Particular parts of the site require their own special styles and these are included where necessary.
How do I configure FCKeditor to recognise multiple CSS files?
Roger
How do I configure FCKeditor to recognise multiple CSS files?
Roger
RE: multiple CSS files
@import url("base.css");
@import url("box.css");
@import url("forms.css");
@import url("tools.css");
@import url("layout-inner.css");
@import url("tables.css");
body {
padding: 5px;
text-align: left;
background-color: #fff;
color: #515151;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
body a{
color: #001e78;
}
etc...