Mobile Font Size

roshjobinson / 2014-05-30 22:04:49   

What would I need to do to make the font sizes appear larger just on mobile?

I know there has been discussion about a mobile platform in the future, but anyway to just let mobile users see the font a bit larger?

Thanks for your help.

Vaska A / 2014-05-30 23:06:55   

After the new Participants system is functional enough to be completely publilc, we'll focus on getting our mobile-friendly default theme out the door. We've already done a bunch of work on it...

You could try something like this...

  1. @media only screen and (min-width: 320px) and (max-width: 568px) 
  2. {
  3. body { font-size: 21px; }
  4. }

Add this to the end of your style.css file.

This thread has been closed, thank you.