Add overflow:hidden; to preview iframes to prevent horizontal scroll bars being visible.
This commit is contained in:
parent
bc6232c520
commit
8272683469
|
|
@ -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%"
|
||||
|
|
|
|||
|
|
@ -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%"
|
||||
|
|
|
|||
Loading…
Reference in New Issue