RSS

The RSS available fields are: Title, Date, Creator, and Description.

The default CSS contains the Description only. In order to add fields to the display they need to be added to the JavaScript:
var fields = [“Description”, “Title”, “Creator”];
Then in the CSS part make the formatting on the display; location, text size, font, background color, etc.

Example:
CSS:

body
{
background-color: #FFFFFF;
font-family: Arial;
font-size: 20px;
}

div
{
overflow:hidden;
}

.line1
{
position:relative;
width: max-content;
height: max-content;
}

.line2
{
position:relative;
width: max-content;
height: max-content;
}

.Description:after {
content: ‘\00a0♦\00a0’;
font-size: 150%;
}


JavaScript:
var fields = [“Description”];