For WYSIWYG and shorten the time in modifications,
Both on line or off line, I usually use the ways below to connect the WYSIWYG, CSS edit and style preview for Zen Cart. Also in provide solutions and answer questions to the forum, I will try it first by the way below.
Normally, the steps only take less than half minute or 15 seconds in my practices. And then can play it around until end.
The tools
It just for examples, you can use any tools you like.
#1. for editing and preview, I prefer TopStyle Pro but any editor with samilar functions will do the jobs.
#2. for browser I use Firefox for it have numeric helpful extensions for all sorts.
For the purposes talking about, two extensions will help, again any way with similar function will do the jobs.
#2a. Just Source View - JSView
#2b. View Souce With - ViewSourceWith
The steps
Again it only for demo, you can do any way you like.
#3. For the page need to edit, first use Firefox to browse the page, then save:
#3a. the page source - for e.g. we call it => testpage.html
#3b. the stylesheet - use the same name => stylesheet.css (or any you like)
then save to your local pc.
#4. open the saved => testpage.html by TopStyle Pro,
and in the file you can find the standard structure of Zen Cart for the css.
#4a.
e.g.
the below is the link to the stylesheet of my testing.
<link rel="stylesheet" type="text/css" href="includes/templates/future_zen_4/css/stylesheet.css" />
And from your local pc find the path of the stylesheet in point 3b.
#4b.
e.g.
in my testing, the path of the styleshee in my Win pc is:
C:\01\css\stylesheet.css
#4c.
in the line of the point #4a. of the file testpage.html in point #4
change the line for link of the stylesheet and point it to your local file.
#4d.
e.g.
in my test win pc, the link look like below.
<link rel="stylesheet" type="text/css" href="file://C:/01/css/stylesheet.css" />
After that, again use TopStyle Pro to open and edit your stylesheet.css in local.
And you will find that every edit after save will be refect by the preview window of TopStyle Pro and for Firefox or IE.
One more, since it is in html and you can move the "section code of html" defined by Zen Cart.
By trial and error, move section by section, add and edit the html, it can achieve the mock up effects.
After that you can turn to the php file and figure out how to edit the template files for the final results.
.