• Resolved beyondbroken

    (@beyondbroken)


    1) How do I remove the product category title and price from the thumbnails? Do I need a CSS code for that? If so, can you tell me what it is? ??

    2) How do I change the FONT for product category title and product category price from the thumbnails? (Example: Change the font to be “Times New Roman”.)

    Would like to know both options as I’m not sure which I will go with yet.

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi beyondbroken,

    Could you send us the link to your website’s product catalogue page?

    Thread Starter beyondbroken

    (@beyondbroken)

    Yes. I published it for public view, so you should be able to see it now.

    https://beyondbrokeninchrist.com/test-catalog/

    Hi beyondbroken,

    1. You can use the following custom CSS to remove the product title and the price from the thumbnail view:

    
    .upcp-thumb-title {
    display: none;
    }
    
    .upcp-thumb-price {
    display: none;
    }
    

    2. To change the product title and price font, you can using the following custom CSS:

    
    .upcp-thumb-title {
    font-family: Dancing Script;
    }
    
    .upcp-thumb-price {
    font-family: Dancing Script;
    }
    

    You can set the font as per your requirements.

    Thread Starter beyondbroken

    (@beyondbroken)

    Thank you so much! Works great.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Thumbnail Changes’ is closed to new replies.