The program does not provide a control to alter the alignment of your web page. You can however cause each of the web pages in your document to be exported as left aligned by inserting the following code in to the website tracker code field in the Web Properties dialog:
Note. This code is compatible with Xara Web Designer 5.0.1
<script type="text/javascript">
function my_res(e)
{
if(my_oldres)my_oldres(e);
xr_xr.style.marginLeft="0px";
xr_xr.style.left="0px";
dx=0;
document.body.style.backgroundPosition="0px 0px";
};
var my_oldres=0;
window.onload=my_lod;
function my_lod()
{
my_oldres=window.onresize;
window.onresize=my_res;
my_res();
};
</script>
Robert Turner
Comments