Add overflow:hidden; to preview iframes to prevent horizontal scroll bars being visible.

This commit is contained in:
Dave Earley 2016-06-09 12:25:07 +01:00
parent bc6232c520
commit 8272683469
2 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@
<div class="col-sm-6">
<h4>Event Page Preview</h4>
<div class="iframe_wrap" style="height: 600px; border: 1px solid #ccc;">
<div class="iframe_wrap" style="overflow:hidden; height: 600px; border: 1px solid #ccc;">
<iframe id="previewIframe"
src="{{route('showEventPagePreview', ['event_id'=>$event->id])}}"
frameborder="0" style="overflow:hidden;height:100%;width:100%" height="100%"

View File

@ -184,7 +184,7 @@
<div class="col-md-6">
<h4>Organiser Page Preview</h4>
<div class="preview iframe_wrap"
style="height: 500px; border: 1px solid #ccc; overflow: hidden;">
style="overflow:hidden; height: 500px; border: 1px solid #ccc; overflow: hidden;">
<iframe id="previewIframe"
src="{{ route('showOrganiserHome', ['organiser_id' => $organiser->id]) }}"
frameborder="0" style="overflow:hidden;height:100%;width:100%" width="100%"