Hello S.L.,
you will need to add these style in your theme customizer in the admin panel to remove header from desktop version:
.my_header{
display: none
}
.ow_page_container{
padding-top: 50px;
}
to remove header from mobile version add these style:
@media (max-width: 480px){
.my_header {
display: none
}
.ow_page_container{
padding-top: 50px;
}
}
to remove header from tablet view add these styles:
@media (max-width: 768px) and (min-width: 479px){
.my_header {
display: none
}
.ow_page_container{
padding-top: 50px;
}
}
Thank you for the interest in my themes.
Much appreciate your quick response!