Link to home
Start Free TrialLog in
Avatar of Eduardo Fuerte
Eduardo FuerteFlag for Brazil

asked on

Could you point what's necessary to configure this bootstrap text and booton layouts accordingly with the picture?

Hi Experts


Could you point what's necessary to configure this bootstrap text and booton layouts accordingly with the picture?

User generated image
To be like this
User generated image

The code used:
    <div class="form-group">
            <div class="row colbox">
            <div class="col-lg-4 col-sm-4">
                <label for="observacao" class="control-label">CR Modal</label>
            </div>
            <div class="col-lg-2 col-sm-2">
                <input id="cr_modal" name="cr_modal" placeholder="CR Modal" type="text" class="form-control"  value="<?php echo set_value('cr_modal'); ?>" />
                <span class="text-danger"><?php echo form_error('cr_modal'); ?></span>
            </div>
            
            <div class="col-lg-4 col-sm-4">
                <input id="descr_cr" name="descr_cr" placeholder="Descrição CR" type="text" disabled="disabled" class="form-control"  value="<?php echo set_value('descr_cr'); ?>" />
                <span class="text-danger"><?php echo form_error('descr_cr'); ?></span>
            </div>

            <div class="col-lg-2 col-sm-2">
            <!-- Button trigger modal -->
            <button type="button" class="btn btn-info " data-toggle="modal" data-target="#myModal">
                C
            </button>

Open in new window


Thanks in advance!
ASKER CERTIFIED SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Eduardo Fuerte

ASKER

Good!