ok, I wish I knew what I was doing with CSS. Anyway I changed the VH value as noted below and that fixed the problem with the vertical truncation when the IPAD & Phone are vertical. But when I change the the phone & ipad to horizontal, I get the truncation again and a little worse?
Thanks,
Mike
@media only screen and (max-width: 600px) {
.has-header-image.home .custom-header-media,
.has-header-text.home .custom-header-media {
min-height: 30vh;
}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
.has-header-image.home .custom-header-media,
.has-header-text.home .custom-header-media {
min-height: 45vh;
}
}