1
Answer

boostrap

Akash Patil

Akash Patil

9y
326
1
hello
i want img and text in one row in header
<div id="logo-group">
<!-- PLACE YOUR LOGO HERE -->
<span id="logo"><img src="styles/img/logo-o.png" style="height:30px; width:30px" alt="Data " title="Data "></span>
<span style="float: left;">Data </span>
  </div>
Answers (1)
1
Bharath Peggem

Bharath Peggem

NA 696 10.3k 9y
Hi Akash,
 
Try this one
 
<div id="DocumentsDiv">
   <div class="row">
      <div class="col-sm-6 col-md-3">
         <div class="thumbnail">
            <img src="filePath" alt="Generic placeholder thumbnail" />
         </div>
         <div class="caption">
            <h3>1 <small>:fileDescription</small><br /></h3>
         </div>
      </div>
   </div>
</div>
 
Thanks,
Bharat peggem 
Accepted