Thanks for getting in touch! Sorry but there’s really no easy way to achieve that. You’ll have to override a lot of styling via custom CSS. I’m thinking you don’t want to adjust the font size and padding because it affects the desktop view as well(> 1024px). I would suggest adjusting it only when the screen size is within 992px to 1024px. 992px below is when the header changes layout. You can wrap your CSS with media query like this.
@media (min-width: 992px) and (max-width: 1024px) {
/*CSS HERE*/
}
If you could share the URL of the site maybe I can give you a more accurate one.
I’m using a child theme and dropped this into style.css…
@media only screen and (min-width: 992px) and (max-width: 1024px) {
.fl-page-nav .navbar-nav, .fl-page-nav .navbar-nav a {font-size: 14px !important;}
}
I flushed the server cache - but it wasn’t taking effect.
I dropped the same code into the customizer (css code area) and it worked fine.
I’ve got a few lines of CSS in CSS Hero, but I haven’t put anything into the child theme style.css – could something be overriding it?
We’re fine for now, but maybe when the site goes live I’ll shoot you a link.