Help

  • Unknown's avatar

    I want to make my headings and text on my post smaller how can I do this?

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

  • Unknown's avatar

    I can’t see any posts on the site you reference, so I am working off of the demo site.

    This is where the main setting for font size is set, but it may be that you will want to set the font sizes for the various text elements separately.You can try this and adjust the 100% down a little to see if that would do. It will scale all text at once.

    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    font-size: 100%;
    }`

    If the above is a little too coarse of an adjustment, the following will allow you to adjust various text types separately.

    This would allow you to adjust the post/page content text size separately:

    body, button, input, select, textarea {
    font-size: 23px;
    }

    This will allow you to adjust the post/page titles:

    .entry-title {
    font-size: 68px;
    }

    This will adjust the post meta data to the left of the post content.

    .entry-meta {
    font-size: 13px;
    }

    Let’s start with the above and work from there.

  • The topic ‘Help’ is closed to new replies.