
Originally Posted by
peterapo
Thanks, columns are displaying correctly, I have to work out how to make them a fixed size and not resize when entering text and inserting images.
Just use cell width and height setting as follows:
for pixel width.
HTML Code:
<table border="0" width="300">
<tr>
<td width="100" height="100"> </td>
for percentage width.
HTML Code:
<table border="0" width="100%">
<tr>
<td width="30%" height="30%"> </td>
As I said, basic HTML is OK - so don't be frightened to use it.
------------------------------------------------------

Originally Posted by
peterapo
Can you tell me how to go about entering image paths correctly, as images are broken?
Regards
The PATH to the images depends entirely on where you store the images.
In your zencart webshop, you have an images folder at the root level of the installation.
What I do (to distinguish index page design element images from product images) is create a sub-folder in the images folder, and call that folder defined-pages.
That is where I store images that appear in any defined page that appear
The PATH in this case, will be:
Code:
images/defined-pages/picture1.jpg
Note that if the link to the image is internal, you need only have the path shown as I show above, because ZC will put into your header, the <base-href="............"> tag.
Naturally, EXTERNAL images will require the FULL path:
HTML Code:
http://www.some-other-website.com/images/picture.jpg
Note that in this case (full path), you run the risk of Browser SSL warnings when/if you invoke SSL on your server, if the PATH to an element is itself insecure... ie: http:// instead of https://