function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
John L.John L. 

walking first...

To my way of thinking, this should work:
<apex:page applyBodyTag="false">
<body bgcolor="590059">
&nbsp;
</body>
</aplex:page>

Can anyone provide insight as to how I can accomplish the desired result?
James LoghryJames Loghry

Assuming the desired result here is you want a page with a purple background?  You're on the right track, you just have a few typos and are using the wrong HTML attribute.  In HTML5, the bgcolor attribute doesn't work, so you'll have to use CSS to apply the background color instead.

 

<apex:page applyBodyTag="false">
<body style="background-color: #590059">
&nbsp;
</body>
</apex:page>