PlaceHolderMain controlling td width of hard-coded values
Posted
by Linda
on Stack Overflow
See other posts from Stack Overflow
or by Linda
Published on 2010-05-19T12:18:56Z
Indexed on
2010/05/19
12:20 UTC
Read the original article
Hit count: 327
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?
© Stack Overflow or respective owner