-1

How to put a text inside an image using bootstrap 3.3.5. I want the image to be on the background.

Example = https://i.stack.imgur.com/ZZIoi.png.

HaveNoDisplayName
  • 8,291
  • 106
  • 37
  • 47
sdfdsf sdf
  • 383
  • 1
  • 5
  • 12
  • You need to post the code you are working with in a working example (HTML/CSS/JS) [mcve] and see > [jumbotron](http://getbootstrap.com/components/#jumbotron) and https://stackoverflow.com/questions/22000754/responsive-bootstrap-jumbotron-background-image – vanburen Nov 01 '15 at 01:51

1 Answers1

1
<div class="jumbotron" style="background-image: url('http://image.url/he.png');">
    <h2>Hello Heading Here</h2>
    <p>Some Paragraph Stuff Here</p>
</div>
Joosh
  • 136
  • 1
  • 9