Hello,
I’m trying to get the image banner to not “tuck” under the announcement bar area on mobile. The image seems cropped and the menu logo appears over the faces of the subjects. I have a sticky on scroll up transparent menu and transparent announcement bar revealing the background page color. I was hoping the community could tell me where I went wrong here.
The Code I have in my base.css is as follows:
.banner__content {
align-items: flex-end !important;
}
main#MainContent {
margin-top: 100px;
}
@media (max-width: 767px){
.header-wrapper.color-background-1.gradient {
background: transparent !important;
position: absolute;
width: 100%;
}
.header-wrapper.color-background-1.gradient {
position: relative;
left: 0;
width: 100%;
background: transparent;
}}
The code entered into the custom CSS of the announcement bar:
.utility-bar.color-background-2.gradient {
background: transparent !important;
}
And the code in my theme.liquid:
{% if template == 'index' %}
{% endif %}


