Hi tomasmac1,
You can go to the backend > Site Template Styles > ja_resort - Default > Open Layout settings > Edit the header block
and find the line 25 to 29:
Replace this code:
<div class="d-none d-lg-block col-lg-2 col-hd-3">
<div class="head-action">
<jdoc:include type="modules" name="head-action" />
</div>
</div>
With new code:
<div class="d-lg-block col-lg-2 col-hd-3">
<div class="head-action">
<jdoc:include type="modules" name="head-action" />
</div>
</div>
And add the following CSS code to the Tools > Custom CSS:
@media (max-width: 991px) {
.head-action p {
margin-bottom: 0;
}
div.head-action p a {
height: auto !important;
}
}
Hope this helps!