• Resolved samo282

    (@samo282)


    Hello guys,

    Can i change the size of the currency symbol ? Here is our website: https://www.vodadumzahrada.cz
    In settings the currency look like K? but on the main site there is a big K? and it bothers me because it looks really weird.

    Thank you

    • This topic was modified 6 years, 10 months ago by samo282.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Your theme is aggressively applying text-transform: uppercase; to most elements, inadvertently affecting the currency symbol. You can fix this on just the currency symbol by applying this CSS in Appearance > Customise > Additional CSS:

    .woocommerce-Price-currencySymbol {
      text-transform: none !important;
    }
    

    Normally !important is considered poor practice because it’s misused a lot, but this is probably a perfect example of the ideal use case, where it’s actually important that its styles not be overridden.

    • This reply was modified 6 years, 10 months ago by Jacob Peattie.
    • This reply was modified 6 years, 10 months ago by Jacob Peattie.
    Thread Starter samo282

    (@samo282)

    Thank you very much Jacob.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Currency symbol size is too much’ is closed to new replies.