Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1333676

    Hi. What css should I use to increase the size of all fonts used in woocommerce widgets or should I do it for each type of widget?

    I try to explain myself better: in the single product page, with css I managed to increase the font size of the “PRODUCT CATEGORY” widget from 12 to 18px

    https://trikego.com/it/prodotto/trikego-solo-telaio/

    https://ibb.co/d7dVhs5

    /***/
    .widget_product_categories li a {
    font-size: 18px;
    font-style: normal;
    }
    /***/

    but I can’t figure out how to change the size of the widget fonts in the product summary page to 18px

    https://trikego.com/it/store/

    https://ibb.co/Z6XLmhg

    Is there a method to standardize with a single css class all the widget fonr that I will use in the sidebar of the wocommerce pages (summary and single product)?

    Or do I have to make specific classes for each widget? In this case, would you please tell me how to increase the widget fonts in the store product summary to 18px?

    https://trikego.com/it/store/

    https://ibb.co/Z6XLmhg

    As always thanks for your support. Kind regards. Bruno

    #1333695

    same problem with categories and tags

    https://ibb.co/GW6t4Bh

    https://trikego.com/it/prodotto/capottina/

    i can’t find css to resize fonts

    #1333713

    Hi,

    This URL is returning a 404 error on my end: https://trikego.com/it/store/, please check it and post a new URL.

    Please try this CSS for the categories:

    .template-shop .product_meta {
        font-size: 18px;
    }

    Best regards,
    Rikard

    #1333755

    Hi Rikard. I added the css to the Enfold Child Css

    / * Rikard * /
    .template-shop .product_meta {
    font-size: 18px;
    }

    but it does not change the size of the fonts for categories and woocommerce product summary tags

    https://trikego.com/it/negozio/

    https://ibb.co/nRLZd3s

    • This reply was modified 2 years, 11 months ago by Bruno.
    #1333760

    At the moment, after checking it didn’t solve the problem, I deleted your css. Let me know if I can contribute in any way to the solution (for example if I have to put your css back or need accesses). Thanks Rikard. Kind regards. Bruno

    #1333808

    Hi,

    Please try this CSS instead:

    .sidebar .product_list_widget li {
      font-size: 18px;
    }

    Best regards,
    Rikard

    #1333861

    Hi Rikard. Please be patient: I added your css and it works in part: the titles (indicated with the red arrow) remain to be increased, would you be kind enough to show me the class?

    https://ibb.co/fMR3kXr

    https://trikego.com/it/negozio/

    Thanks for the support. Kind regards. Bruno

    #1333910

    Hi,

    Please try this CSS as well:

    .sidebar .product_list_widget span.product-title {
      font-size: 18px !important;
    }

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.