I am trying to display menus on a restaurant's website. The easiest way was to save the word documents they use as a WebPage and that load that into an into the website. I dont want the to have a fixed height in pixels since the menu changes everyday and so does the height of the document. Sounds easy enough but I just cannot get rid of the scroll bars!
I've tried everything and every combination of overflow:hidden, display:block and clear:both but nothing seems to work.
Here is the HTML:
<div class="col-sm-6 col-md-4 col-lg-4 specials">
<div class="container">
<div class="row">
<div class="menu-section">
<embed src="Menu/lSpecials.htm" width="100%"></embed>
</div>
<div class="col-xs-12 col-sm-6">
<div class="menu-section">
<embed src="Menu/lunch1.htm" width="100%"></embed>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="menu-section">
<embed src="Menu/lunch2.htm" width="100%"></embed>
</div>
</div>
</div>
</div>
And the CSS:
#restaurant-menu .menu-section {
margin: 0 20px 20px;
display:block;
}
Any help will be greatly appreciated!