Getting CSS in forms to work

Getting CSS in forms to work

A few simple rules to remember when you try to use Cascading Style Sheets in Notes Forms.

1. Fields should be using DefaultSerif or DefaultSanSerif fonts, Size 10, Black, Normal. Any other setting will make Domino override your CSS.

2. Entering CSS tags on the HTML tab of any design element only works if the design is not inside a table.

3. Any design element that is inside a table will inherit the CSS for that table.

I usually create a CSS form with 4 fields. CSSName(Text), CSSInfo(Text), CSSStart(Date), CSSEnd(Date). Then I create a view for the CSS documents with the CSSName in the first column.

The CSSInfo field will contain the CSS tags that is loaded by the browser. You can create as many CSS documents as you need but your Web pages will only use the CSS document called "default".

The fields CSSStart and CSSEnd are used by an scheduled agent that determines which document should be the "default" CSS document. This approach is better than creating a Page in Notes Designer.

It allows the user to change the CSS anytime it's needed. You can implement different style sheets for different clients or at different times of the year.


StyleSheet :=@Subset(@DbName;-1)+"/css/default!OpenDocument"";
"<LINK REL="stylesheet" TYPE="text/css" HREF="/"+StyleSheet+">";

    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.

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.