My webpage currently allows scrolling to the right and left in HTML.
I would like to change this functionality.
What I envision is having my cup and book visible without the need for scrolling, with a background image centered on the page.
<div class="container maindiv " >
<img class="img-responsive book" src="http://i.imgur.com/dLCTiyn.png">
<img class="img-responsive cup" src="http://i.imgur.com/AULhYEH.png">
<div class="black_bg">
<ul class = "menudiv">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<div class= "para">
<p>
lorem ipsum
</p>
<p>
lorem ipsum
</p>
<p>
lorem ipsum
</p>
<p>
lorem ipsum
</p>
</div>
<div class= "para1">
<p >
lorem ipsum
</p>
<p>
lorem ipsum
</p>
<p>
lorem ipsum
</p>
<p>
lorem ipsum
</p>
</div>
</div> <!--black_bg-->
</div>
The cup and book images should be positioned on either side of the background image.
For further reference, please see this demo link.
Your suggestions are welcome.