Subtitle in Woocommerce display problem

Home Forums Jevelin Theme Subtitle in Woocommerce display problem

Home Forums Jevelin Theme Subtitle in Woocommerce display problem

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    RESOLVED Posts
  • Nerina Mills
    Participant

    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

    Nerina Mills
    Participant

    Thank you for the prompt assistance!

    You are most welcome here 🙂

    Nerina Mills
    Participant

    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

    Attachments:
    You must be logged in to view attached files.

    Please use below custom CSS code to achieve this.

     

    .woocommerce .woocomerce-styling .product h1.product_title.entry-title {
        border-bottom: 0;
        margin-bottom: 0;
    }
Viewing 6 posts - 1 through 6 (of 6 total)