Forum Moderators: not2easy

Message Too Old, No Replies

Increase divition height along with form height

To enlarge the height

         

Madhu

10:55 am on Jun 22, 2007 (gmt 0)

10+ Year Member



Hi,
My html body contains a division.Inside that division i designed a form.Now i want to increase the form size along with the division dynamically.
While i tying to do it, the contents of the form is coming outside to the division .Please anybody help me in this situation.................Thanks in advance

zackattack

11:33 am on Jun 22, 2007 (gmt 0)

10+ Year Member



Hi Madhu

Can you post some code up - it sounds like either you have the elements positioned or there is some float escaping going on.

Show us some of your code (HTML and CSS) and should be able to help

ZA

Madhu

11:42 am on Jun 22, 2007 (gmt 0)

10+ Year Member



Hi

The following is my css code
.leftcolumn <!--for left-->
{
margin-top:40px;
padding:25px;
width: 90px;
height:100%;
min-height:1000px;
border: 1px solid white;
}
.rightcolumn {
float:right;
width: 870px;
height:400px;
padding-right:8px;
background-color: #4863A0;
height:1050px;
border: 1px solid white;
margin-top:40px;
}

zackattack

11:59 am on Jun 22, 2007 (gmt 0)

10+ Year Member



where abouts is your form, can you post the HTML too?

Madhu

12:26 pm on Jun 22, 2007 (gmt 0)

10+ Year Member



<div id=page-container>

<div class="rightcolumn">
<form name="job_post" id="job_post" method="post">
</form>
</div>
<div class="leftcolumn">
<form name="recruiter_inbox" id="recruiter_inbox" method="post" action="recruiter_inbox.php">
</form>
</div>

Marshall

2:24 pm on Jun 22, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Madhu,

Did you validate your CSS? If the comment tag you are showing in the post is in the CSS "<!--FOR LEFT-->", that could be causing a problem. Comments in CSS go between /* and */.

Marshall