In my custom .master page I have the following code:
<asp:ContentPlaceHolder id="PlaceHolderMain" runat="server" Visible="true" />
This prints out the main content of my page. It contains this structure
<table ID="OuterZoneTable" width="100%">
<tr>...</tr>
<tr id="OuterRow">
<td width="80%" id="OuterLeftCell">...</td>
<td width="180" id="OuterRightCell">...</td>
</tr>
...
</table>
I want to control the width of #OuterLeftCell and #OuterRightCell but it is hard-coded in the html that is returned. How would I change these values?