I am trying to shrink the image banner with custom css, so far I have this written up:
h2 {
font-size: 18px;
}
@media (min-width: 768px) {
.banner {
display: none;
}
}
.banner {
height: 55px;
}
The issue is the text I have attached to the image banner is below the picture and doesn’t stay aligned and central to the height of the banner when I adjust the px in CSS.
My website is https://downunderthunder.com.au
Image for reference (Blue area and text below)
What am I missing to align it regardless of the px I enter so it’s always central.
Thanks in advance for any assistance!
