hflsales:
Thanks stevesh. I am building custom subcategory pages & Zencart is limiting how long the page can be. If it goes over a certain length, the code gets scrambled. Is there a way around this?
There aren't any "subcategory pages"... "Pages" - in the sense of static HTML pages - do not exist. Content and Information is stored in the DATABASE - not in any "files" - so your hunting for HTML files will lead you nowhere.
All category INFORMATION and CONTENT is contained in the database, and you add your content there (for categories, it is via the category EDIT function.)
There is technically NO LIMIT to the quantity of data you add, so if you wanted a category description to run to the length of Tolstoy's "War And Peace", this is quite possible (though impractical).
"Pages" are built on-the-fly by the PHP code, which gathers up the data and resources (such as images and DEFINE VARIABLES) and ASSEMBLES each page for the user - depending on what the user REQUESTS.
The "page" is delivered to the browser, and when the visitor clicks a link or performs an action, that "page" EVAPORATES FOREVER, and a NEW page is built by the PHP, which is then delivered to the browser.
Along the way, calculations can be made (and data stored), but EACH PAGE is made up for EACH UNIQUE VISITOR. And when they move around in the site, these pages "vanish" and new ones are made in their place.