Hi,
I am an Indie game programmer who does not have the time to make a website.
WordPress made my website look nice and it’s easy and quick to add/modify content.
My question today is the following:
How can I modify the space between text lines in posts?
Please look at below web page on my site
https://www.16BitSoft.com
I want to decrease the space between text lines in above web page.
How can I do this?
Thanks!
Jesse
]]>You can use CSS to change the line-height of your paragraph. You can insert the CSS in the Customizer under the ‘Additional CSS’ tab.
If you want the lines tighter across the whole site, use:
p {
line-height: 1;
}
If you only want it to effect the main content area (with the colored bands of text) use:
.entry-content p {
line-height: 1;
}
In these examples I set the height to ‘1’ I think that what you have be default is 1.5, you can experiment and set yours to anything in between or beyond.
Hope that helps!
-Shaynald
]]>