Paragraph line spacing to big
I have tried to adjust the Paragraph line spacing on my site by following CSS guides which sound very straightforward.
But adding the following CSS and amending does not appear to change anything on my Woocommerce product pages:
.post p {
line-height: 1.5em;
padding-bottom: 15px;
}
I have been following this guide:
Please see the description in the following Product description, as an example:
My product webpage
Replies (2)
-
September 7, 2018 at 1:28 am
I have tried to adjust the Paragraph line spacing on my site by following CSS guides which sound very straightforward.
But adding the following CSS and amending does not appear to change anything on my Woocommerce product pages:.post p {
line-height: 1.5em;
padding-bottom: 15px;
}I have been following this guide:
Please see the description in the following Product description, as an example:
My product webpage -
September 7, 2018 at 3:02 am
Hi Photjana,
Try this
.woocommerce-tabs #tab-description p{
padding-bottom: 0 !important;
margin: 0 !important;
}Copy and paste this in Appearance -> Customize -> Additional CSS
Make sure you clear your browser cache or your site cache if any cache plugin is used.
Best Regards
-
September 7, 2018 at 11:07 am
Perfect Thank you So much!