Home › Forums › Jevelin Theme › Subtitle in Woocommerce display problem
Home › Forums › Jevelin Theme › Subtitle in Woocommerce display problem
Hi there,
I have added the Woocommerce Product Subtitle plugin to my shop so I can add subtitles to my products. The plugin is working well but now the subtitles are displaying below the Heading line above the price. I need the subtitle above the line under the title.
Is there a way to fix this?
Thanks and regards
Solution for this topic
Hi @Nerina Mills,
I hope you are well today and thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.woocommerce .woocomerce-styling .product .product_title { padding-bottom: 0; border-bottom: 0; margin-bottom: 0; } .woocommerce .woocomerce-styling .product .product-subtitle { border-bottom: 1px solid #ebebeb; padding-bottom: 20px; }
Best regards,
Shufflehound team
Thank you for the prompt assistance!
You are most welcome here š
Hi Shufflehound,
Could you assist me to get rid of the line between my subtitle and title? I need the layout to be like this:
Title
Subtitle
Line
Price
Line
Screenshot attached.
Thanks so much
Please use below custom CSS code to achieve this.
.woocommerce .woocomerce-styling .product h1.product_title.entry-title { border-bottom: 0; margin-bottom: 0; }