I needed all 3 form elements to display in a single horizontal line
and here is my view template

<?php echo $form->create('Data');?>
        <fieldset>
                <legend><?php __('Add Data');?></legend>
        <?php

                echo $form->input('numeral' , array('label' => false ,
'type'=>'text','size' => '4',
'maxlength'=>'4' , 'style' => 'float: left; width: 30%;
display:inline;' , 'div'=>''));
                echo $form->input('pulldown1' , array('label' => false , 
'style' =>
'float: left; width: 30%; display:inline;' , 'div'=>''));
                echo $form->input('pulldown2' , array('label' => false , 
'style' =>
'float: left; width: 30%; display:inline;' , 'div'=>''));

                ?>

        </fieldset>
<?php echo $form->end('Submit');?>


and it did not work

It still displays one below the other

Any suggestions would be greatly helpful indeed

Malcolm
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to