Solved
How can I reduce the space between lines (from double to single space)?
How do I remove the space between lines in "text/graphic" questions? Right now, there seems to be a double space between lines and I would like it to be single space.
Thank you!
Best answer by TomG
Just add the same rule to Look & Feel -> Style -> CSS and it will override it.
What's strange is changing it to 1.9em should make the space bigger, not smaller. Maybe you meant to type 1.0em?
```
.Skin .QuestionText {
line-height: 1.0em;
}
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

For some reason, it's only happening to all of the text questions in only one of my blocks.
Also, don't forget that it could just be white space on your image. If the image isn't closely trimmed, it might just be displaying the image, not creating spaces. If you don't see spaces on the rich content editor, and there are no ```<br>``` in the code, then you need to crop the image, it's not a code problem.
I don't see any breaks where they shouldn't be. Do you know if there is anything else I can add to the code? I understand there is something called line-spacing but i'm not sure how to use it.
Similar to this video I found online: https://www.youtube.com/watch?v=bFIFp12aLv8
I'm not very familiar with CSS. Do you a CSS rule I could use to override it?