I'm having an issue viewing the index page on a cell phone in portrait/landscape mode. There is a space between the image/video and the title "Angela Goes Deep" (also an image) In edition to a space the image/video disappear completely when you start to scroll down. Works fine on a laptop when I resize the window.
https://angelahunte.com/index.html
Misty
2121
style="display: none;"
And use one of these depend of the case...style="display: none;"
If there is no result found then check if one of the utilities classes is use<div class="show">...</div>
<div class="hidden">...</div>
or other possible class name * would be replace by column numbervisible-xs-*
visible-sm-*
visible-md-*
visible-lg-*
hidden-xs
hidden-sm
hidden-md
hidden-lg
First I would try to avoid inline CSS because this usually break the Bootstrap logical.True, but this is only for testing.
@media (max-width: 540px) {
#video {
display: none;
}
#full-bg {
display: block;
}
}
Put all class that you have in the head of your page and put those in external CSS file and place this file link after the Bootstrap CSS link.phone-menu-bg
<!-- =============== START BREADCRUMB ================ -->
<section class="no-mb">
<div class="row">
<div class="col-sm-12">
<!--div class="breadcrumb-fullscreen-parent phone-menu-bg"-->
<!--div class="breadcrumb-fullscreen-parent"-->
<div>
<!--div-->
<div class="breadcrumb breadcrumb-fullscreen alignleft small-description overlay almost-black-overlay" data-stellar-background-ratio="0.5" data-stellar-vertical-offset="0">
<div id="video">
<video id="background-video" width="400" controls autoplay loop muted>
<source src="videos/Mango20228.mp4">
Your browser does not support HTML5 video.
</video>
</div>
<div id="full-bg">
<img src="assets/img/home/Angela3.png">
</div>
</div>
</div><!--end bread -->
</div>
</div>
</section>
<!-- =============== END BREADCRUMB ================ -->
<style>
#video video{
width:100%;
}
</style>
<section class="visible-xs visible-sm">
<div>
<img src="assets/img/home/Angela3.png">
</div>
</section>
<section class="nb hidden-xs hidden-sm">
<div id="video">
<video id="background-video" width="400" controls autoplay loop muted>
<source src="videos/Mango20228.mp4">
Your browser does not support HTML5 video.
</video>
</div>
</section>
Open in new window