Would like to place a .well div (or a button, whichever works best) within the designated green area shown in this image:
Here is the code I currently have:
<div class="container-fluid">
<div class="row row1" style="height: 400px;">
<div class="col-lg-4 col-lg-offset-1">
aaaa <!-- BUTTON OR WELL HERE -->
</div>
</div>
CSS:
.row1 {
background: url("appart.jpg");
background-size: 100% 400px;
background-repeat: no-repeat;
}
The issue arises when attempting this code:
<div class="container-fluid">
<div class="row row1" style="height: 400px;">
<div class="col-lg-4 col-lg-offset-1">
<div class="well well-sm">aaa
</div>
</div>
This resulted in the following output:
How can I ensure the .well
div stays within the green area and has smaller height and width compared to the green area?