I'm working in DreamWeaver, I've created a dynamic database field - it woks just fine, except I can't get the text to wrap. Â I've tried giving it a width, no width, auto width - bascially every configuration within DreamWeaver. Â I need two columns. (Pulling from two different tables within the same database.) Â Here is the code: (CSS follows)
 <div class="divProc" id="OpSetup">
  <?php do { ?>
  <input <?php if (!(strcmp($row_rsOpSetup['
Complete']
,"Yes"))) {echo "checked=\"checked\"";} ?> type="checkbox" name="checkbox" id="checkbox"> <?php echo $row_rsOpSetup['Descriptio
n']; ?>
  Â
  <?php } while ($row_rsOpSetup = mysql_fetch_assoc($rsOpSet
up)); ?>
 </div>
 <div class="divProc2" id="PostResin">
  <?php do { ?>
   <input <?php if (!(strcmp($row_rsPostResin
['Complete
'],"Yes"))
) {echo "checked=\"checked\"";} ?> name="CheckboxResin" type="checkbox" value=""> <?php echo $row_rsPostResin['Descript
ion']; ?>
     Â
      <?php } while ($row_rsPostResin = mysql_fetch_assoc($rsPostR
esin)); ?>
 </div> Â
Â
Here is the CSS:
.divProc {
      width: auto;
      display: marker;
      white-space: pre;
      height: 1100px;
      float: left;
}
.divProc2 {
      width: auto;
      white-space: pre;
      display: list-item;
      height: 1100px;
}
Here is the page ; Â
http://www.streamdent.com/PostResin.php
Open in new window