Non-threaded

Forums » Advanced Editor Forum » Read Thread

Get help from the experts on variables, scripts, items, and other scary things.

This isn't working?

10 years ago

$PAGETEXT := $PAGETEXT +"<body bgcolor='CCFFCC'>"

I'm trying something pretty basic but I can't get it to work :( Help please?

 

This isn't working?

10 years ago

Don't be in rich text editor.

This isn't working?

10 years ago

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.

This isn't working?

10 years ago
Thank you so much, it was bugging me like crazy :P