Summary

Use a Note to share information with other users. A Note can also be used to define CSS to be used for publishing HTML from a Database Query or SharePoint List.



Create a Note

To create an object, select Manage then a folder.
  • Select New > Note
  • Name: Enter a name
    • Text: Enter Note message
    • CSS for HTML Table: Enter CSS
  • Select the Save button


Default HTML Table CSS

Below is the default CSS used to format an HTML table. Use this CSS to customize the format of the table when publishing HTML from a Database Query or SharePoint List.


table.ibTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.ibTable td, table.ibTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.ibTable tbody td {
  font-size: 13px;
}
table.ibTable tr:nth-child(even) {
  background: #D0E4F5;
}
table.ibTable thead {
  background: #1C6EA4;
}
table.ibTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}