Need to make category title bold in MH magazine

  • Unknown's avatar

    Hi Geniuses,

    I need to make my category titles bold in MH Magazine. How do I best do this, please?

    Thanks!

    Hunter

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

  • Unknown's avatar

    Hi,
    You site asskicker.blog is in private mode so i am unable to view it.

    But here’s the basic idea,
    To bold any text use the font-weight CSS property.

    For Example:
    I you have a title text with the following HTML code:
    <div class="title-text">TITLE TEXT</div>
    The CSS code to make this title bold will look like this:

    .title-text {
        font-weight: bold;
    }

    OR

    .title-text {
        font-weight: 900;
    }

    Let me know if this helps :)

  • The topic ‘Need to make category title bold in MH magazine’ is closed to new replies.