Using Notes documents for CSS design

Using Notes documents for CSS design

Normally, in order to define a CSS file, you would use a Page design element. However, using a Page requires a design modification if the webmaster needs to modify the CSS settings.

In order to alleviate this, I have decided to use Notes documents to maintain the CSS rule definitions.

To implement this, you need to create the following:

A form with two fields:
1. The first one for the name of the CSS file. The CSS name should end with ".css", i.e. "FormStyle.css".
2. The second one for the actual CSS rule definitions. This one should be defined as a rich text field.

A view that displays the CSS documents. This view should display the first field in the form as the only column, and this column should be sorted alphabetically.

Finally, every form that needs to implement the CSS settings should have a formula in the HTML Head Content event.

To illustrate the formula, please consider that my view is called "vwGUI", and I want to implement the FormStyle.css document in all documents created with the form that has the formula below in the HTML Head Content event:

This technique can be used to centralize the maintenance of your CSS files in one database for all the applications on the server. All you will need to do is use the URL for the database to be used as the CSS file library.

Good luck, and have fun.


db := @ReplaceSubstring(@Subset(@DbName; -1);"\";"/");
server

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

:= @Name([CN]; @Subset(@DbName; 1)); "<META http-equiv="expires" content="0">" + @NewLine + "<link rel=stylesheet type="text/css" href="" + server + "/" +db + "/vwGUI/FormStyle.css">"

This was first published in October 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.