Increase font for On Demand theme

  • hi, what is the code for increasing the font (post text) for the On Demand theme?

    Thank you!
    Baochi

    The blog I need help with is: (visible only to logged in users)

  • If you’re talking about the paragraph text, you’ll use
    p {font-size: 120%;}
    or whatever size you want to increase it to.
    You could also target
    .wf-active body, .wf-active input, .wf-active textarea {
    font-size: 17px;
    }
    and change the 17px to the size you want.

  • Thank you, Annadoo! That worked. I love it when things work! :)

    Do you also happen to know how I can darken the paragraph text?

    Baochi

  • Sure thing. Couple ways – using the same selector as you did to increase the font size add in the following between the { }
    color: #000000;

    That will give you black text. Looks like you are currently using color:#30302B; which is almost black but not quite.

    You could also give the font a heavier weight if you are wanting it to appear darker.
    font-weight: bold;
    or use a number value to get to what you want
    font-weight: 500;
    or heavier still
    font-weight: 900;

  • Thank you,m Annadoo!

  • The topic ‘Increase font for On Demand theme’ is closed to new replies.