Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Adam 60

    @AdamR22

    Posted

    Hi. You need to set the font weight to the text that you wish to be bold in your styling. I'd also advice that you add a class called bold to the div housing the text you wish to be bold. Something like

    ...
    <div class="t bold">
        <p>...</p>
    ...
    

    then to the styling

    .bold p {
        font-weight: 800;
    }
    
    0