I used the following css to hide the title, but I cannot find a method that shoes the title on desktop.
@media screen and (min-width: 700px) {
header {
display: none !important;
}
}
I used the following css to hide the title, but I cannot find a method that shoes the title on desktop.
@media screen and (min-width: 700px) {
header {
display: none !important;
}
}
So you want to hide the title of the app on all devices, bar the desktop?
Yes hide the title bar for mobile but not on desktop.
Yes