[Resolved] Gap between product title and short description

Home Forums Support [Resolved] Gap between product title and short description

Home Forums Support Gap between product title and short description

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1173186
    Douglas

    I’m using some CSS to hide prices on my product pages, but it has left a large gap of space between product title and the short description. Any idea how I can remove a line of space to narrow this gap?

    .woocommerce-Price-amount {
        display: none;
    }
    #1173221
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    .woocommerce div.product p.price {
        display: none;
    }

    Let me know if this helps πŸ™‚

    #1173230
    Douglas

    That made it a little too tight πŸ™

    See here: https://ibb.co/LvhmT5k

    #1173235
    Leo
    Staff
    Customer Support

    Try adding this CSS as well:

    h1.product_title.entry-title {
        margin-bottom: 1.5em;
    }
    #1173248
    Douglas

    Adjusted from 1.5em to .5em and it looks good πŸ™‚ Thanks.

    #1173251
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.