Search for it and you will find out how. He has explained a couple times.
Instructions from Claude for his version. All credit to him.
"If you open up the html file, you will notice that i've grouped the components together into different div elements. They are named in "clusters". These clusters are named like "timecluster", "datecluster", etc... In the CSS file, you will find the handles for these clusters.(div#timecluster, etc) Those CSS chunks contain positioning code: top, left. top defines how many pixels to move from the top. and like wise for left. Note that the entire theme has been rotated at an angle, so top is not the statusbar anymore, but it's actually directly above the text.(which would be the upper left corner in this theme.) Mess with top and left values and you will shift the entire clusters around the screen. Similarly, each cluster has smaller components in it. You can also use the same logic on them... except... their top is relative to the border of the cluster region--not the entire screen. Just play with it and u will pick it up. I've made it very easy to move things.
To remove the seconds, just put "//" in front of this line in the claudeScript.js file: document.getElementById('secondsbox').innerHTML = se;
To set your zipcode for the weather, you just set this in the same claudeScript.js file at the top under the GLOBAL CONFIGURATIONS section: var zipcode = "92843";
When I say it's simplified and optimized, I'm refering to the fact that this theme only does 3 things. time, date, and weather. nothing fancy. just display them. I have rewritten the entire script and kept only what is necessary, so it's optimized."