Okay
  Public Ticket #2326703
Font Size of Product Title (Single Product Page)
Closed

Comments

  • Emrah started the conversation

    Hey,

    is it possible to increase the font size of the product title in the single product view. (red marked area)

    Is there also a way, to change the color of the line under the three tabs below?

    I can't provide a URL because the site is in the making on a localhost.

  •  3,022
    Andrew replied

    Hi Emrah,

    Use the following custom css in Salient > General settings > CSS/Script related:

    .product_title.entry-title {
        font-size: 50px !important;
    }
    

    Hope this helps.

  • Emrah replied

    Thanks, that worked great.

    Any ideas for the second part of my topic?

    Thank you in advance!

  •  3,022
    Andrew replied

    Hi Emrah,

    To change the color of the line under the three tabs, use this custom css

    .nectar-quick-view-box .single_add_to_cart_button_wrap a span, .products li.product.minimal .product-add-to-cart a span, .woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control, .products li.product.minimal .product-add-to-cart .added_to_cart, .woocommerce-tabs .full-width-content[data-tab-style="fullwidth"] ul.tabs li a{
        
        background-image: linear-gradient(to right, #000000 0%, #000000 100%) !important;
        
    }
    

    remember to change the color codes to the represent the color of your choice.

    Hope this helps.