$PAGETEXT := $PAGETEXT +"<body bgcolor='CCFFCC'>"
I'm trying something pretty basic but I can't get it to work :( Help please?
Don't be in rich text editor.
It should be #CCFFCC; you need that preceding octothorpe for hex values. However, bgcolor is not supported in HTML5, and you might need to use CSS ($PAGETEXT := $PAGETEXT +"<style>body{background-color:#CCFFCC;}</style>") for it to work.