use this code on area
<div class=”Actionmobile” style=”background-color:#FCFCFC”>
<br><br>
</div>
and this on css file (can you change 765px with any resolution that you want to active that area)
.Actionmobile {
display: none;
}
@media screen and (max-width: 765px) {
.Actionmobile {
display: block;
}
}