Okay
  Public Ticket #1547777
Font Size Change
Closed

Comments

  • jerryscheller started the conversation

    Hello! How do you change the font size of the product name and also the title of each tab description? They are huge and I would like to reduce them.

    Thanks!


  •  3,034
    Andrew replied

    Hi jerryscheller,

    For the product title use this CSS:

    body.single-product div.product .product_title{
        font-size:2em;
    }
    

    for the tabs use this CSS:

    .woocommerce div.product .woocommerce-tabs ul.tabs li a{
        font-size:0.9em;
    }
    

    add the CSS to salient \ general settings - css script related - custom css code.

    Hope this helps.

  • jerryscheller replied

    thank you!!