Home › Forums › Support › Responsive Layout – h1, h2,… too big on smartphones This topic has 7 replies, 3 voices, and was last updated 10 years, 6 months ago by Tom. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts December 13, 2014 at 4:29 am #54352 Franz The headings h1, h2 are too big on smartphones. http://www.klavierspiel.com/smart-simulation.jpg How can I change this? I it possible to define the Font-size in em? would this handle the porblem? December 13, 2014 at 10:06 am #54451 TomLead Developer Lead Developer I’m currently looking into the best way to handle this by default. For now, you can define the sizes for mobile with this CSS: @media screen and (max-width: 768px) { h1 { font-size: 30px; } h2 { font-size: 25px; } } Adjust the sizes to your liking 🙂 December 13, 2014 at 10:30 am #54456 Franz Thank you. December 13, 2014 at 3:26 pm #54499 Franz How can I define that the smartphone ignores or changes the backgroundimage for the header? December 14, 2014 at 9:22 am #54621 TomLead Developer Lead Developer Same kind of thing: @media screen and (max-width: 768px) { .site-header { background-image: none; } } Or: @media screen and (max-width: 768px) { .site-header { background-image: url(URL TO DIFFERENT IMAGE); } } December 14, 2014 at 11:07 am #54662 Franz Great, thanks. August 8, 2015 at 1:30 am #127506 anamoore In which version will this be implemented by default? August 8, 2015 at 9:00 am #127580 TomLead Developer Lead Developer Not sure, changing things like this to the theme can make some people angry as it will change the look of their website on mobile. It’s also hard to tell what font size to make these elements, as it depends on your site design, and how long your titles are. Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In