Hi There,
To do that, let’s wrap this block of code into @media (min-width: 980px) media query.
.home .masthead.masthead-inline {
height: 0px;
}
.home .x-navbar {
background-color: transparent !important;
border-width: 0 !important;
}
.home .x-navbar.semi {
background-color: rgba(252, 252, 252, 0.80) !important;
border-bottom: 2px solid rgba(204, 204, 204, 0.8) !important;
}
e.g.
@media (min-width: 980px) {
.home .masthead.masthead-inline {
height: 0px;
}
.home .x-navbar {
background-color: transparent !important;
border-width: 0 !important;
}
.home .x-navbar.semi {
background-color: rgba(252, 252, 252, 0.80) !important;
border-bottom: 2px solid rgba(204, 204, 204, 0.8) !important;
}
}
Hope it helps,
Cheers!