Spacing between lines

Is there a way to reduce the space between a few lines of text? I typed a “cat” picture using keystrokes but the spaces between the lines looked bad.

Please post your website URL where your above mentioned behavior appears and I will look into it.

Thanks. It’s:

Every time I hit return, it creates a double space whether I want it or not.

WordPress creates a new <p> tag each time you hit enter and there is a 10px margin between lines. You can either edit your article in HTML(Text) view (Not visual). Or reduce margin by adding this code to Appearance - Theme Options - Other - Custom CSS.

.entry-content p {
    margin: 0;
}