Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #843490

    speester
    Participant

    I would like to make the fonts of the price bigger as i would like to focus on the price.

    How do i do that?

    Thanks !

    #843493

    speester
    Participant
    This reply has been marked as private.
    #843880

    Friech
    Moderator

    Hi There,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    .woocommerce .price {
        font-weight: 800;
        font-size: 2em;
        margin-bottom: 20px;
    }

    Font weight value 100 to 900 the higher the bolder. Font-size 2em mean times 2 of the original font-size. Margin bottom to equalize the vertical spacing of price.

    Hope it helps, Cheers!