Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Brad Davis

    (@brad-davis)

    Hi Krissagrace, thanks for using my plugin!
    The style will depend on your theme, but normally the text is within the CSS class price. So you could do something like:

    .price {
      font-size: 12px;
    }

    Then if the actual price fonts change you could change their font size with the CSS class amount.

    If you have any trouble, drop a link in your next comment for me to take a look at.

    Thread Starter krissagrace

    (@krissagrace)

    Thanks for responding! There’s no problem with the font size not until I go to the page of a specific product.

    I used “per song” for the unit of measure in this link.

    I did try to tweak the .amount classes in the theme’s stylesheet since the uom is under the .amount class. Still didn’t work though. I tried .price too but it was only the price resizing.

    https://keijiko.com/futurestudio/product/music-video-distribution/

    Plugin Author Brad Davis

    (@brad-davis)

    Hi,

    The uom is actually under the .price class. The theme you are using has font-size of 2em for the price, then sets the .amount class to 2rem, this is why the amount is showing smaller than the uom font. If you add css like the follow, it should start to look the same font-size, or just reduce the value to, eg, 1.5, to make it slightly smaller

    .woocommerce .price,
    .woocommerce-page .price {
      font-size: 2rem;
    }

    Hope that helps

    Thread Starter krissagrace

    (@krissagrace)

    Thanks for all the help!

    Plugin Author Brad Davis

    (@brad-davis)

    You’re welcome krissagrace.
    If that has fixed your issue, please mark this as resolved.

    Thread Starter krissagrace

    (@krissagrace)

    It’s fixed. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Font size’ is closed to new replies.