Archived topic
Gap between product title and short description
5 replies · Started by Douglas on February 21, 2020
Viewing posts 1–6 of 6
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;
}
Hi there,
Try this CSS:
.woocommerce div.product p.price {
display: none;
}
Let me know if this helps :)
That made it a little too tight :(
See here: https://ibb.co/LvhmT5k
Try adding this CSS as well:
h1.product_title.entry-title {
margin-bottom: 1.5em;
}
Adjusted from 1.5em to .5em and it looks good :) Thanks.
No problem :)
This archived topic is closed to new replies.