Hi @kurudrive,
I hided both of the page-header and breadSection and the problem here is the padding of the siteContent caused by the margin of page-header, so I tried to fix it by this:
@media (min-width: 300px) {
.siteContent{
padding-top: 49px;
}
}
@media (min-width: 992px) {
.siteContent{
padding-top: 129px;
}
}
But I realized that the page-header auto generates the margin-top (in mobile viewport) when 49px, when 88px. It’s not fixed by 49px, so
@media (min-width: 300px) {
.siteContent{
padding-top: 49px;
}
}
it’s sometimes not right.