Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1206895

    hi guys,

    i’m trying to adjust the sizing of the title that says “related products” but when i use

    .related.products h2 {
    font-size: 30px;
    }

    it affects the sizing of the titles on the related products as well, even when i also have a font size set for this with css

    h2.woocommerce-loop-product__title {
    	font-size: 20px !important;
    }

    Can you help me increase the size of the related products title without affecting the size of the product title?
    Thanks!

    #1206934

    Hey bobfurgo,

    Add this to quick css:

    .related.products h2:first-of-type{
    font-size:30px!important;
    }
    
    .related.products h2.woocommerce-loop-product__title{
    font-size:20px!important;
    }

    Best regards,
    Jordan Shannon

    #1206998

    that worked thank you!!

    #1207000

    Hi,

    No problem at all. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘related products title’ is closed to new replies.