Too much space between paragraphs
-
Although I have seen several posts asking for help w/ CSS when the space between paragraphs is too small (or non-existent), I have the opposite problem.
I’m new to CSS and despite all my reading (and endlessly playing with the CSS file in a hit or miss fashion), I can’t figure out why the paragraphs are so far apart.
All margin and padding elements are set for both top and bottom margins to be 0. Here are some snippets from the file.
/* body
————————————————–*/
body {
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
font-size:75%;
line-height:1.6em;
text-align:center;
}/* paragraphs, lists, etc
————————————————–*/
p {
margin:0;
padding:0 0 18px 0;
}ul {
margin:0;
padding:0 0 18px 0;
}ul ul {padding:0;}
blockquote {
margin:0;
padding:0 0 18px 0;
font-style:italic;
}Might someone be able to tell me what I need to adjust to make them closer together? I am guessing the problem has to do with a margin-bottom tag, because this isn’t an issue at the top of each post, but I still can’t figure out how to fix it.
I have checked in both IE and Firefox, and they are too far apart in both places. Thank you in advance!!!
You can see for yourself at https://www.agelesslearner.com/blog/.
- The topic ‘Too much space between paragraphs’ is closed to new replies.