Changing font sizes

  • Unknown's avatar

    Hi – I need some help manipulating font sizes because I’m at a complete loss as to why I’m unable to change certain headings

    I would like to change the font size of my sidebar widget headers, the headings underneath the posts in “featured content” on the hompage, and ideally change the font of the bullet point text in blog posts

    I have tried manipulating them via the custom CSS, google fonts, and SiteOrigin CSS plug in. No luck

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

  • Unknown's avatar

    Hi there,

    Sure thing, this should be doable using CSS. Feel free to update the value of “font-size” to whatever suits you best.

    For changing the font size of the headings beneath the posts in “Featured Content”, please try the following CSS:

    .inside .title span {
    font-size: 20px;
    }

    Changing the fonts of the bullet points is a bit more tricky with CSS, because fonts either need to be imported in your theme’s stylesheet or all your reader’s devices. If you’re on the Business Plan, which is what it seems if you’re using plugins, then you might have more luck with it.

    But if you’re trying to make it consistent to how things are like without the bullet points, try this CSS:

    #content ul li {
    font-family: 'Assistant';
    font-weight: 200;
    font-style: normal;
    }

    For the sidebar widget headers, please try the following CSS:

    .wf-active .widget-box .widget-title {
    font-size: 20px;
    }

    Let me know if that works for you, or if you have any further questions. :)

  • Unknown's avatar

    worked like a charm

    Thank you!!

  • Unknown's avatar

    Glad it did, let us know if you have any further questions or issues! :)

  • The topic ‘Changing font sizes’ is closed to new replies.