You can accomplish that by 3 template edits:
In Header find:
Code:
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
Replace with:
Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<table border="0" width="800px" cellpadding="0" cellspacing="0" align="center">
<else />
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
</if>
In Footer find:
Code:
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">
And replace with:
Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="800px" class="page" align="center">
<else />
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">
</if>
Lastly, in your spacer_open find:
Code:
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
And replace with:
Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<div class="page" style="width:800px; text-align:$stylevar[left]">
<else />
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
</if>