Re: Content does not resize
hav u tried running ur program..??
i think u r facing this problem during design mode..
Re: Content does not resize
The problem was not really the content, but the <div> the content was in. The content is placed is several DIV whicj had a background image, for making a nice border. To solve the problem I placed the content in a table and it works fine now..
Code:
......
<div class="topRight">
<div class="bottomLeft">
<div class="bottomRight">
<table width="100%">
<tbody>
<tr>
<td>
<div class="content">
<div align="center">
<asp:ContentPlaceHolder ID="mainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
......