Archived topic
There is no tablet view on Customizer
3 replies · Started by Satori on April 2, 2018
Hello! I'm trying to edit the H1 size on tablet but I noticed there isn't the option in the customizer. The button does appear at the bottom of the page, but no in the size field. There is just desktop and mobile.
Is this normal? How do I restore tablet button for customization?
Hi there,
Yup that's normal. We don't have a specific control for tablet.
CSS is needed as for now:
@media (min-width: 769px) and (max-width: 1024px) {
h1 {
font-size: 16px;
}
}
Thanks again Leo, it worked. I forgot to mark this as resolved.
No problem :)