Can't see html editor in home page

You are not alone. Overrides are a pretty complicated area - with lots of alternatives and possibilities for problems.

I believe you can use the very simplest VF syntax possible, because you are just calling the skuid page and don’t need to call any controllers. Here is the VF page code you need to use (and adust)
Show specific page with no controller

<apex:page showHeader=“true” sidebar=“false” readonly=“true” docType=“html-5.0”

``` title="My Open Tasks"> <skuid:page page="MyOpenTasks<strong>" /> ``` Replace the "MyOpenTasks" with your skuid page name. And probably remove the title, and change showHeader and Sidebar properties to false.

I hope that works for you.