Question : height auto issue in css

Hi
i have attached a css.

I am using echo statement to display some content from database. But my content is overflowing. I tried height auto but it is not working.

please advice on this issue.

Thanks
Parag
 
style.css
 
 
style.css
 
 
style.css
 
 
this is for layout
 
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
</head>
<body id="page1" >
<div id="main">
  <!-- header -->
   <!-- content -->
    <div id="content">
    <div class="cont-box">
      <div class="border-top">
        <div class="border-right">
          <div class="border-left">
            <div class="left-top-corner">
              <div class="right-top-corner">
                <div class="right-bot-corner">
                  <div class="left-bot-corner">
                    <div class="inner">
                       <div class="container" ><!-- start container -->
                       	<div class="new-box-1"><!-- start new-box-1 -->
                            	
                            </div> <!-- End new-box-1 -->
                       		<div class="new-box-2">
<?php 
echo $variables; /* This is the conetent which is overflowing.*/
?>
</div><!-- End new-box-2 -->
                       </div><!-- End container -->

Answer : height auto issue in css

Try this:


1:
2:
3:
4:
Change:
$stp_schdtearliest=odbc_result($rs,"stp_schdtearliest");
to
$stp_schdtearliest=date("m-d-Y H:i A", strtotime(odbc_result($rs,"stp_schdtearliest")));
Random Solutions  
 
programming4us programming4us